An open API service indexing awesome lists of open source software.

https://github.com/eliasmoflag/xscan

Simple header-only IDA-style code scanner
https://github.com/eliasmoflag/xscan

code-scanning cpp game-hacking modding pattern-scanning windows x86 x86-64

Last synced: 4 months ago
JSON representation

Simple header-only IDA-style code scanner

Awesome Lists containing this project

README

          

# xscan
Simple header-only IDA-style code scanner
```cpp
#include

using function_t = std::add_pointer_t;

function_t function = xscan::pattern("E8 ? ? ? ?")
.scan(xscan::pe_sections(image_base))
.add(1).rip();
```
```cmake
FetchContent_Declare(xscan
GIT_REPOSITORY
"https://github.com/eliasmoflag/xscan.git"
GIT_TAG

)
FetchContent_MakeAvailable(xscan)
```