Adds scan functionality for PE files

Introduces a method to scan for patterns within specified PE files.
This facilitates searching for patterns outside of loaded modules.
This commit is contained in:
2025-10-07 08:03:07 +03:00
parent f3fe0e3cee
commit 710f91999f

View File

@@ -41,4 +41,7 @@ namespace omath
throw std::runtime_error("Pattern scan for loaded modules is only for windows platform"); throw std::runtime_error("Pattern scan for loaded modules is only for windows platform");
#endif #endif
} }
std::optional<std::uintptr_t> PePatternScanner::scan_for_pattern_in_file(const std::filesystem::path& path_to_file)
{
}
} // namespace omath } // namespace omath