PDA

View Full Version : How man makes C + + hacks UD



alexd1999
01-28-2008, 01:32 PM
How man makes C + + hacks UD ?

Sorry for my bad English

Firesnipe
01-28-2008, 06:15 PM
Well first the man clicks the search button and types his tags
or he goes in the C++ section and looks for the tutorials
And I think they even have a tutorial how to make it undetected :eek:

alexd1999
01-29-2008, 06:32 AM
I can not find it

Can you tell me the link pless

Sorry for my bad English

virus7799
01-29-2008, 10:29 AM
http://www.dxth4x.com/forums/forumdisplay.php?s=&daysprune=&f=39
Thats the C++ section and at the bottom right corner of your page is where you can select forums.

R3bel19
01-30-2008, 03:10 AM
You cant make hacks ud like DXT show understud???
You need your own way, there r alot!!!

R3bel19

seth26jan
02-07-2008, 06:45 PM
You cant make hacks ud like DXT show understud???
You need your own way, there r alot!!!

R3bel19
Well, I'm new to C++ and I'm lookin' through the tuts, I just gotta know how u get the hax undetected.
(Example goes here)

virus7799
02-07-2008, 09:22 PM
Well, I'm new to C++ and I'm lookin' through the tuts, I just gotta know how u get the hax undetected.
(Example goes here)

Originally posted by Dxt-Wr194t. All credits go to him. The words highlighted in bold white are the ones you change.


DWORD proc_id;
HANDLE hProcess;

void memory()
{
HWND hWnd = FindWindow(0, "WarRock");
GetWindowThreadProcessId(hWnd, &proc_id);
hProcess = OpenProcess(PROCESS_ALL_ACCESS|PROCESS_VM_OPERATIO N|PROCESS_VM_READ|PROCESS_VM_WRITE|PROCESS_QUERY_I NFORMATION, FALSE, proc_id);
}


void Writelong(long addy, long value)
{
memory();
WriteProcessMemory(hProcess, (LPVOID*)(DWORD) addy, &value, sizeof(value), NULL);

}
void WritePointerFloat(long addy, short offset, float value)
{
long maddy;
long saddy;
memory();
ReadProcessMemory(hProcess, (LPVOID*)(DWORD) addy, &maddy, sizeof(maddy), NULL);
saddy = maddy + offset;
WriteProcessMemory(hProcess, (LPVOID*)(DWORD) saddy, &value, sizeof(value), NULL);
}