
Windows에서 C++을 사용하는 애플리케이션을 위한 간단한 안티치트 라이브러리. #PastedProtection
모듈 리매핑 스레드 필터링 모듈 은닉 메모리 검사 무결성 검사 DLL 인젝션 방지 디버깅 방지 프로세스 정책 리터럴 문자열 난독화 Themida/VMProtect 호환성
Windows 7~11 Visual Studio 2019
options.h에서 옵션을 설정하고 0xGuard를 빌드합니다.0xGuardSDK.h를 포함하고 0xGuard.lib를 링크합니다.#include <Windows.h>
#include <stdio.h>
#include "../0xGuard/0xGuardSDK.h"
#pragma comment (lib, "0xGuard.lib")
int main(void)
{
printf(RGS("Welcome to 0xGuard's sample Executable File.\n"));
LoadLibraryA(RGS("SampleDLL.dll"));
getchar();
return 0;
}