sigmatch
v0.2.0
现代 C++ 20 签名匹配/搜索库
??
或**
)和半字节通配符( 1?
或*B
)。reader
和target
允许您搜索更多目标(例如网络流量数据包)。 一个简单的例子:
using namespace sigmatch_literals ;
sigmatch::this_process_target target;
sigmatch::search_result result = target.in_module( " **module_name** " ).search( " 1A ?? 3C ** 5* ?F " _sig);
for ( const std::byte *address : result.matches()) {
std::cout << " matched: " << address << ' n ' ;
}
有关更多信息,请参阅/示例。
executable_file_target
。 sigmatch可以根据您的选择根据 Apache-2.0 许可证或 MIT 许可证获得许可。