h3is3nb3rq
Onaylı Üye
Point blank ESP Name hack yapmaya çalışıyorum projeyi derliyorum DLL oluşturup inject ediyorum fakat çalışmıyor adres doğru string forciblyremove 25 şubat ofset : 0x0C761A78
Kod:
unsigned __stdcall ThreadCall(LPVOID Param)
{
while( 1 )
{
Sleep(200);
memcpy((void*)0x0C761A78,(void*)"\x90\x90",2); // esp açık
}
return 1;
}
BOOL APIENTRY DllMain( HMODULE hModule, DWORD dwReason, LPVOID lpReserved )
{
if( dwReason == DLL_PROCESS_ATTACH )
{
_beginthreadex(0, 0, ThreadCall, 0, 0, 0);
}
return true;
}