Skip to content

Commit

Permalink
[FEATURE] Hidden a debug string
Browse files Browse the repository at this point in the history
  • Loading branch information
hasherezade committed Feb 5, 2025
1 parent efcf940 commit 36e1853
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scanners/thread_scanner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,9 @@ bool pesieve::ThreadScanner::scanRemoteThreadCtx(HANDLE hThread, ThreadScanRepor
if (reportSuspiciousAddr(my_report, addr)) {
if (my_report->status == SCAN_SUSPICIOUS) {
my_report->indicators.insert(THI_SUS_CALLSTACK_SHC);
#ifdef _DEBUG
std::cout << "[@]" << std::dec << tid << " : " << "Suspicious, possible shc: " << std::hex << addr << " Entropy: " << std::dec << my_report->stats.entropy << " : " << my_report->is_code << std::endl;
#endif //_DEBUG
if (my_report->is_code) {
break;
}
Expand Down

0 comments on commit 36e1853

Please # to comment.