Skip to content

Commit

Permalink
[VERSION] 0.3.9.8
Browse files Browse the repository at this point in the history
  • Loading branch information
hasherezade committed Sep 8, 2024
1 parent b2ac6af commit 5ac79e7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pe_sieve_ver_short.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
#define PESIEVE_MAJOR_VERSION 0
#define PESIEVE_MINOR_VERSION 3
#define PESIEVE_MICRO_VERSION 9
#define PESIEVE_PATCH_VERSION 7
#define PESIEVE_PATCH_VERSION 8

#define PESIEVE_VERSION_STR "0.3.9.7"
#define PESIEVE_VERSION_STR "0.3.9.8"
2 changes: 2 additions & 0 deletions scanners/thread_scanner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@ bool pesieve::ThreadScanner::checkReturnAddrIntegrity(IN const std::vector<ULONG
const ScannedModule* mod = modulesInfo.findModuleContaining(lastCalled);
if (mod && mod->getModName() == "win32u.dll") return true;
}
#ifdef _SHOW_THREAD_INFO
std::cout << "\n#### TID=" << std::dec <<info.tid << " " << syscallFuncName << " VS " << lastFuncCalled << " DIFFERENT"<< std::endl;
printThreadInfo(info);
std::cout << "STACK:\n";
Expand All @@ -204,6 +205,7 @@ bool pesieve::ThreadScanner::checkReturnAddrIntegrity(IN const std::vector<ULONG
printResolvedAddr(next_return);
}
std::cout << std::endl;
#endif //_SHOW_THREAD_INFO
return false;
}

Expand Down

0 comments on commit 5ac79e7

Please sign in to comment.