A c++ header only library for inline hooking. Supports x86_64, x86, and arm. Small, simple, and easily detected :)
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.
xerox 3ca37aff06
Update README.md
5 years ago
README.md Update README.md 5 years ago

README.md

shithook

An inline hooking library for windows. I had issues with other public hooking libraries so I made my own stinker.

usage

Installing the hook/Init.

Hook::Install(
    (uintptr_t) &WriteFile,     //address to put inline hook at.
    (uintptr_t) &HookWriteFile  //address to jmp too.
);

Disabling the hook so you can call the original function.

 Hook::Disable((uintptr_t)&WriteFile);