#include<stdio.h>
#include<iostream>
#include<Windows.h>
#include<stdlib.h>
using namespace std;
int gTotal; // 校验总和
DWORD WINAPI Thread(LPVOID lpParam)
{
// 循环监测线程
while (true) {
int address = 0x961000;
int xTotal = 0;
for (int i = 0; i < 0x6000; i++) {
byte Byte;
ReadProcessMemory((HANDLE)-1, (PVOID)address, &Byte, 1, NULL);
xTotal += Byte;
address++; // 读取成功往后读取一个地址
}
// 当监测不达标时,退出
if (xTotal != gTotal) {
exit(0);
}
Sleep(1000); // 暂停1s之后,避免太卡
}
return 0;
}
int main(int argc, char* argv[]) {
int address = 0x961000;
// 先来计算出校验总和
for (int i = 0; i < 0x6000; i++) {
byte Byte;
ReadProcessMemory((HANDLE)-1, (PVOID)address, &Byte, 1, NULL);
gTotal += Byte;
address++; // 读取成功往后读取一个地址
}
// 先来计算出校验总和
CreateThread(NULL, 0, Thread, 0, 0, 0);
// 暂停线程
system("pause");
}
用vmprotect对程序进行加密,并不是把程序拖进vm中加密一下就完事了,而是要选择添加你要加密的函数,但是在vm中添加函数首先你要知道你要加密函数的地址,这样显得不方便
#include <stdio.h>
#include <String.h>
#include "VMProtectSDK.h"
#include <Windows.h>
DWORD WINAPI ThreadProc(_In_ LPVOID lpParameter)
{
while(true) {
bool response = VMProtectIsValidImageCRC();
if (response = false)
{
printf("程序被非法调试");
break;
}
}
return 0;
}
void call() {
VMProtectBegin("call函数");
printf("helloword");
VMProtectEnd();
}
int main()
{
//HANDLE hTread = CreateThread(NULL, 0, ThreadProc, NULL, 0, NULL);
VMProtectBegin("main函数");
char key[30];
printf(VMProtectDecryptStringA("请输入注册码:"));
scanf("%s", key);
if (!strcmp("123456789", key)) {
printf(VMProtectDecryptStringA("注册成功"));
}
else
{
printf(VMProtectDecryptStringA("注册失败"));
}
system("pause");
VMProtectEnd();
}