From 710f91999f702a7e8037cde10f5b5e970e8f34c9 Mon Sep 17 00:00:00 2001 From: Orange Date: Tue, 7 Oct 2025 08:03:07 +0300 Subject: [PATCH] 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. --- source/utility/pe_pattern_scan.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/utility/pe_pattern_scan.cpp b/source/utility/pe_pattern_scan.cpp index 54530b1..a7bde5c 100644 --- a/source/utility/pe_pattern_scan.cpp +++ b/source/utility/pe_pattern_scan.cpp @@ -41,4 +41,7 @@ namespace omath throw std::runtime_error("Pattern scan for loaded modules is only for windows platform"); #endif } + std::optional PePatternScanner::scan_for_pattern_in_file(const std::filesystem::path& path_to_file) + { + } } // namespace omath \ No newline at end of file