You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
_xeroxz
3812efdd3d
|
4 years ago | |
---|---|---|
LICENSE | 5 years ago | |
README.md | 4 years ago | |
android.mk | 4 years ago | |
app.mk | 4 years ago | |
main.cpp | 4 years ago | |
shithook.hpp | 4 years ago |
README.md
shithook
A c++ header only library for inline hooking. Supports x86_64, x86, and arm. Small, simple, and easily detected :)
usage
Installing the hook/Init.
hook::make_hook(
&WriteFile, //address to put inline hook at.
&HookWriteFile //address to jmp too.
);
Disabling the hook so you can call the original function.
hook::disable(&WriteFile);
WriteFile(.....)
Enabling the hook.
hook::enable(&WriteFile);