• Stars
    star
    506
  • Rank 87,236 (Top 2 %)
  • Language
    C++
  • Created almost 7 years ago
  • Updated over 5 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

VMProtect 3.x Anti-debug Method Improved

Introduction

VMProtect 3.x Anti-debug Method Improved

Feature

  • Checksum ntoskrnl File
  • Checksum Code Section
  • Anti Debugger
  • Anti HardwareBreakpoint

How use

example.cpp

	XAD_STATUS		status;
	XAntiDebug		antiDbg(GetModuleHandle(NULL), FLAG_FULLON);
	BOOL			result;

	//
	// εœ¨η¨‹εΊζœ€ζ—©ηš„ζ—Άε€™εˆε§‹εŒ– 如 WinMain ζˆ– DllMain
	//
	status = antiDbg.XAD_Initialize();
	if (status != XAD_OK)
	{
		printf("initialize error. %d\n", status);
		return 0;
	}

	//
	// 调用检桋
	//

	for (;;)
	{
		result = antiDbg.XAD_ExecuteDetect();
		printf("result = %s\n", result ? "true" : "false");

		getchar();
	}

	return 0;

Support

xp-win10 and x86/x64