void __cdecl msgbox(char* overtext )
{
DWORD dwCShell = (DWORD)GetModuleHandleA("CShell.dll");
if( dwCShell != NULL )
{
_asm
{
push overtext;
push 0;
push 0x70;
push 0x1c;
mov ESI,dwCShell;
add ESI, 0x????;
call ESI;
add ESP, 0x10;
}
}
}
![=]](/forum/images/emotions/=].gif)
msgbox("HACK INJECTED");