This is part of source:
这是来源的一部分:
#include <stdio.h>
#include <Windows.h>
#include <iostream>
#include <ctime>
#include <cstdlib>
#define WPM(x,y,z,l) WriteProcessMemory((HANDLE)x, (LPVOID)y, (LPCVOID)z, l, NULL)
#define WNOP(x,y,l) for(int n=0; n<l; n++)WriteProcessMemory((HANDLE)((char*)x + n), (LPVOID)y, "\x90", 1);
bool salir = false;
void DisableACI(const HANDLE hProcess = NULL)
{
WNOP(hProcess, 0x1000DDC4, 0x49);
WPM(hProcess, 0x10004D20, "\xB0\x00\xC3", 3);
WNOP(hProcess, 0x1000DDCB, 7);
WPM(hProcess, 0x420AB0, "\xB8\x58\x10\x00\x00", 5);
WPM(hProcess, 0x10004FF0, "\xC3", 1);
WNOP(hProcess, 0x4AFF59, 6);
}
#include