i add one more no patched shotbot here '-'
blocks which shotbot '-' ?
Printable View
i add one more no patched shotbot here '-'
blocks which shotbot '-' ?
Man, Phail will post a bypass, shit.
Run after Gunz, profit.PHP Code:/* Anti-Shotbot Bypasser */
#include <windows.h>
#include <thread>
#include <iostream>
HHOOK MouseHook;
LRESULT CALLBACK ReplaceMousehook(int nCode, WPARAM wParam, LPARAM lParam)
{
if (nCode == HC_ACTION && (wParam == WM_RBUTTONDOWN || wParam == WM_LBUTTONDOWN))
{
reinterpret_cast<MSLLHOOKSTRUCT*>(lParam)->flags = 0;
std::cout << "Injection bypassed!" << std::endl;
}
return CallNextHookEx(MouseHook,nCode,wParam,lParam);
}
void ShotbotBypassExample()
{
while(true)
{
if (GetAsyncKeyState(VK_NUMPAD0)&1)
{
std::cout << "Sending input now." << std::endl;
INPUT input[2];
input[0].type = INPUT_MOUSE;
input[0].mi.dwFlags = MOUSEEVENTF_LEFTDOWN;
input[1].type = INPUT_MOUSE;
input[1].mi.dwFlags = MOUSEEVENTF_LEFTUP;
SendInput(2, input, sizeof(INPUT));
}
Sleep(1);
}
}
int main(int argc, char** argv)
{
std::thread keybind(ShotbotBypassExample);
keybind.joinable();
HHOOK hook = SetWindowsHookEx( WH_MOUSE_LL, ReplaceMousehook, GetModuleHandle(0), NULL );
MSG message;
while (GetMessage(&message,NULL,0,0)) {
TranslateMessage( &message );
DispatchMessage( &message );
}
return 0;
}
bahhh dont even try to bypass it o.O lets play fair this time?
I already pointed out to Gunblade he should check the Windows hook chain and loop through the hooks to make sure you're the only one to hook.
[C] ENUM WINDOWS HOOKS - Pastebin.com
(Credits to Alex from ntinternals)
This is still without the use of a driver, just like I pointed out.
Whoever you are, you're doing an awesome job on sucking his dick. Too bad I was one step ahead of him so you might want to pull your pants up.
-edit-
Judging by your English, you're probably Vitor.
have errors :(
i don't like this codes that much..