RebirthGuard Anti-cheat library for Windows C++ ๐ Features Module remapping Thread filtering Module hiding Memory check Integrity check Anti-DLL Injection Anti-Debugging Process policy Literal string obfuscation Compatibility with Themida/VMProtect โ๏ธ Dependencies Windows 7~11 Visual Studio 2019 ๐ง How to use Set options in options.h and build RebirthGuard. Include RebirthGuardSDK.h and link RebirthGuard.lib in your project. Build your project. ๐ Example #include <Windows.h> #include <stdio.h> #include "../RebirthGuard/RebirthGuardSDK.h" #pragma comment (lib, "RebirthGuard.lib") int main(void) { printf(RGS("Hello RebirthGuard SampleEXE!\n")); LoadLibraryA(RGS("SampleDLL.dll")); getchar(); return 0; } ๐ References Self-Remapping-Code Manual-DLL-Injection