I have windows 7 32-bit laptop
2 GB RAM
Intel HD graphics 762 MB
DirectX 11
i wish to learn how to hack..
I am the one that coded the dll. i just coded it to display a message box and signal a beep to test if it gets in to CFPH, but it gets detected by xtrap.
i installed and use visual studio 2010 so that must mean that it includes the required libraries/files.
i used your injector and hex editing tools but still gets detected by xtrap..
What's the problem?
Does his code work at all?
BOOL WINAPI Main ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
{
DisableThreadLibraryCalls(hDll);
if (dwReason == DLL_PROCESS_ATTACH)
{
Beep(1000,1000);
MessageBoxA(0, "IN", "IN", 0);
}
return true;
}