
i've seen a base with itvoid ShowMessage(char* string, DWORD CShell);
void ShowMessage(char* string, DWORD CShell)
{
DWORD MsgBoxFunc = CShell + 0x7D5A0;
__asm
{
push string;
push 0;
push 0x70;
push 0x1C;
call MsgBoxFunc;
add esp, 16;
}
}
ShowMessage("Injected\n\/lol", CShell);
