yes i am trying to create it my self but
see pls:
#include <windows.h>
DWORD WINAPI Hacks(LPVOID)
{
bool oneshot = false;
while(1)
{
DWORD CShellBase = (DWORD)GetModuleHandleA("CShell.dll");
if(oneshot)
{
for(int i=0 ; i<445 ; i++)
{
DWORD *LTClient = ( DWORD* )( (dwCShell + 0x102BD214) );
}
}
}
}
BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
{
DisableThreadLibraryCalls(hDll);
if ( dwReason == DLL_PROCESS_ATTACH )
{
MessageBoxA(0, "Made By Furqan ", "Successfully Injected", 0);
system("start http://www.mpgh.net");
CreateThread(NULL, NULL,Main, NULL, NULL, NULL);
}
return TRUE;
}