Skip to content

Commit

Permalink
[BUGFIX] Fixed initialization of ModuleData (Issue #130)
Browse files Browse the repository at this point in the history
  • Loading branch information
hasherezade committed Nov 1, 2024
1 parent 53c1915 commit 14aa1bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scanners/workingset_scanner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ bool pesieve::WorkingSetScanner::scanImg(MemPageData& memPage)
}

//load module from file:
ModuleData modData(processHandle, module_start, true, args.use_cache, memPage.mapped_name.c_str());
ModuleData modData(processHandle, module_start, false, args.use_cache, memPage.mapped_name.c_str());
if (!modData.loadOriginal()) {
if (!args.quiet) {
std::cerr << "[-] [" << std::hex << modData.moduleHandle << "] Could not read the module file" << std::endl;
Expand Down

0 comments on commit 14aa1bb

Please sign in to comment.