




#include <windows.h>
#include <iostream>
using namespace std;
void __cdecl PushToConsole(char* szVal ) {
DWORD dwCShell = (DWORD)GetModuleHandleA("CShell.dll");
if( dwCShell != NULL )
{
DWORD *LTClient = (DWORD* )( (dwCShell + 0x2AAE80) );
void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x1f8 );
_asm
{
push szVal;
call CONoff;
add esp, 4;
}
}
}
functions & P.T.C
Then when I run the hack step functions
DWORD WINAPI hello(LPVOID) {
while(GetModuleHandleA("CShell.dll") == NULL ) {
Sleep(120); //100ms
}
}
Sleep(120);
__asm popad;
}
}
}
BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
{
DisableThreadLibraryCalls(hDll);
if ( dwReason == DLL_PROCESS_ATTACH )
{
MessageBoxA(0, "By gustavo5066 - MPGH", "Injcted!", 0);
CreateThread(NULL, NULL,hello, NULL, NULL, NULL);
}
return TRUE;
}
void LearnC++()
{
bool Learn = false;
while(true)
{
if(GetAsyncKeyState(VK_CONTROL)<0) {
if(Learn){
PushToConsole("GoLearnC++ 0");
Learn = false;
}else{
PushToConsole("GoLearnC++ 1");
Learn = true;
Sleep(200);
}
}
