#include <windows.h>
#include <iostream>
using namespace std;
DWORD dwCShell = (DWORD)GetModuleHandleA("CShell.dll");
DWORD WINAPI Hacks(LPVOID param) {
while(GetModuleHandleA("CShell.dll") == NULL ) {
Sleep(7000);
}
bool OneHit = true;
while(1) {
DWORD CShellBase = (DWORD)GetModuleHandleA("CShell.dll");
if(OneHit)
{
for(int i=0 ; i<445 ; i++)
{
*(int*)( (*(DWORD*)((*(DWORD*)(CShellBase + 0xA0B280))+(4*i))) + 0x7F8) = 999999999 ;
}
}
}
}
BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
{
DisableThreadLibraryCalls(hDll);
if ( dwReason == DLL_PROCESS_ATTACH )
{
MessageBoxA(0, "Coded By Insomniace's", "Injected", 0);
CreateThread(NULL, NULL,Hacks, NULL, NULL, NULL);
}
return TRUE;
}

