chztbby / RebirthGuard

Anti-cheat library for Windows C++
MIT License
393 stars 79 forks source link
anti-cheat game-security hack hook hooking injection manual-mapping obfuscation process-protection protect remap remapping sec-no-change

RebirthGuard

Anti-cheat library for Windows C++

:page_facing_up: Features

:heavy_check_mark: Dependencies

:wrench: How to use

  1. Set options in options.h and build RebirthGuard.
  2. Include RebirthGuardSDK.h and link RebirthGuard.lib in your project.
  3. Build your project.

:memo: 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;
}

:mag: References