Sup guys,
This is clean base to test whether an injector gives you auto-ban or not (Note: some injectors make your account banned after 2nd login).
Hotkeys: F2, Numpad 0, Insert, & F12 for closing crossfire.
Source - if you wanna compile yourself:
[Highlight=C++]#include <windows.h>
bool Load()
{
if(GetModuleHandleA("CShell.dll") != NULL
&& GetModuleHandleA("ClientFx.fxd") != NULL)
return true;
return false;
}
DWORD Dll()
{
while(1)
{
while(!Load()) Sleep(200);
if(GetAsyncKeyState(VK_F2)&1) MessageBox(0, "F2 Pressed", "Test", 0);
if(GetAsyncKeyState(VK_NUMPAD0)&1) MessageBox(0, "NUMPAD 0 Pressed", "Test", 0);
if(GetAsyncKeyState(VK_INSERT)&1) MessageBox(0, "Insert Pressed", "Test", 0);
if(GetAsyncKeyState(VK_F12)&1) ExitProcess(0);
Sleep(100);
}
return 0;
}
BOOL __stdcall DllMain(HMODULE module, DWORD reason, LPVOID reserved)
{
if(reason == DLL_PROCESS_ATTACH)
{
MessageBox(NULL, "bottom", "top", MB_OK);
CreateThread(0,0,(LPTHREAD_START_ROUTINE)Dll, 0,0,0);
}
return TRUE;
}[/Highlight]
VirusTotal - Free Online Virus, Malware and URL Scanner
Injector Test.rar MD5:da192f95c3765ad32aafdba9a55dc29c - VirSCAN.org 5% Scanner(s) (2/37) found malware!
Hope this helps you to find undetected one.