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
- Host: GitHub
- URL: https://github.com/eliasmoflag/xscan
- Owner: eliasmoflag
- License: mit
- Created: 2025-01-13T13:24:53.000Z (12 months ago)
- Default Branch: master
- Last Pushed: 2025-01-29T11:56:20.000Z (11 months ago)
- Last Synced: 2025-04-14T19:40:47.152Z (9 months ago)
- Topics: code-scanning, cpp, game-hacking, modding, pattern-scanning, windows, x86, x86-64
- Language: C++
- Homepage:
- Size: 5.86 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
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)
```