#pragma once #define HOOK_JUMP true #define HOOK_CALL false namespace Utils { class Hook { public: class Signature { public: struct Container { const char* signature; const char* mask; std::function callback; }; Signature(void* _start, size_t _length) : start(_start), length(_length) {} Signature(DWORD _start, size_t _length) : Signature(reinterpret_cast(_start), _length) {} Signature() : Signature(0x400000, 0x800000) {} void process(); void add(Container& container); private: void* start; size_t length; std::vector signatures; }; class Interceptor { public: static void Install(void* place, void(*stub)()); static void Install(void** place, void(*stub)()); private: static std::map IReturn; static std::map ICallbacks; static void InterceptionStub(); static void RunCallback(void* place); static void* PopReturn(void* place); }; Hook() : initialized(false), installed(false), place(nullptr), stub(nullptr), original(nullptr), useJump(false), protection(0) { ZeroMemory(this->buffer, sizeof(this->buffer)); } Hook(void* place, void* stub, bool useJump = true) : Hook() { this->initialize(place, stub, useJump); } Hook(void* place, void(*stub)(), bool useJump = true) : Hook(place, reinterpret_cast(stub), useJump) {} Hook(DWORD place, void* stub, bool useJump = true) : Hook(reinterpret_cast(place), stub, useJump) {} Hook(DWORD place, DWORD stub, bool useJump = true) : Hook(reinterpret_cast(place), reinterpret_cast(stub), useJump) {} Hook(DWORD place, void(*stub)(), bool useJump = true) : Hook(reinterpret_cast(place), reinterpret_cast(stub), useJump) {} ~Hook(); Hook* initialize(void* place, void* stub, bool useJump = true); Hook* initialize(DWORD place, void* stub, bool useJump = true); Hook* initialize(DWORD place, void(*stub)(), bool useJump = true); // For lambdas Hook* install(bool unprotect = true, bool keepUnportected = false); Hook* uninstall(bool unprotect = true); void* getAddress(); void quick(); template static std::function Call(DWORD function) { return std::function(reinterpret_cast(function)); } template static std::function Call(FARPROC function) { return Call(reinterpret_cast(function)); } template static std::function Call(void* function) { return Call(reinterpret_cast(function)); } static void SetString(void* place, const char* string, size_t length); static void SetString(DWORD place, const char* string, size_t length); static void SetString(void* place, const char* string); static void SetString(DWORD place, const char* string); static void Nop(void* place, size_t length); static void Nop(DWORD place, size_t length); static void RedirectJump(void* place, void* stub); static void RedirectJump(DWORD place, void* stub); template static void Set(void* place, T value) { DWORD oldProtect; VirtualProtect(place, sizeof(T), PAGE_EXECUTE_READWRITE, &oldProtect); *static_cast(place) = value; VirtualProtect(place, sizeof(T), oldProtect, &oldProtect); FlushInstructionCache(GetCurrentProcess(), place, sizeof(T)); } template static void Set(DWORD place, T value) { return Set(reinterpret_cast(place), value); } template static void Xor(void* place, T value) { DWORD oldProtect; VirtualProtect(place, sizeof(T), PAGE_EXECUTE_READWRITE, &oldProtect); *static_cast(place) ^= value; VirtualProtect(place, sizeof(T), oldProtect, &oldProtect); FlushInstructionCache(GetCurrentProcess(), place, sizeof(T)); } template static void Xor(DWORD place, T value) { return Xor(reinterpret_cast(place), value); } template static void Or(void* place, T value) { DWORD oldProtect; VirtualProtect(place, sizeof(T), PAGE_EXECUTE_READWRITE, &oldProtect); *static_cast(place) |= value; VirtualProtect(place, sizeof(T), oldProtect, &oldProtect); FlushInstructionCache(GetCurrentProcess(), place, sizeof(T)); } template static void Or(DWORD place, T value) { return Or(reinterpret_cast(place), value); } template static void And(void* place, T value) { DWORD oldProtect; VirtualProtect(place, sizeof(T), PAGE_EXECUTE_READWRITE, &oldProtect); *static_cast(place) &= value; VirtualProtect(place, sizeof(T), oldProtect, &oldProtect); FlushInstructionCache(GetCurrentProcess(), place, sizeof(T)); } template static void And(DWORD place, T value) { return And(reinterpret_cast(place), value); } template static T Get(void* place) { return *static_cast(place); } template static T Get(DWORD place) { return Get(reinterpret_cast(place)); } private: bool initialized; bool installed; void* place; void* stub; void* original; char buffer[5]; bool useJump; DWORD protection; std::mutex stateMutex; }; }