Quote:
Originally posted by inSertCoiN@Apr 14 2007, 09:15
Anyone know/can find out a way to bypass GameGuard so that we can use Postmsg or Sendmsg APIs?
Or maybe someone knows another way to send keypresses and mouse actions on inactive windows?
|
You may need to try study about injection.
You can inject DLL to any execution file and forge process thread to handle keyboard/mouse and send what ever postmsg/sendmsg API to exe game ,program or inactive windows.
Some post from gunz forum,
[Only registered and activated users can see links. Click Here To Register...]
Inject DLL before gameguard or Nprotect load.
Here is guide psudo code DLL.
Main DLL{
DisableThreadLibraryCalls;
CreateThread(LPSECURITY_ATTRIBUTES lpThreadAttributes,DWORD dwStackSize,LPTHREAD_START_ROUTINE lpStartAddress,LPVOID lpParameter,DWORD dwCreationFlags,LPDWORD lpThreadId);
}
lpStartAddress{
If GetAsyncKeyState{
Do procedure you want or run reuse call procedure in exe game if you know;
}
sleep
}