[Release] Wallhack method all Client / find Maparea pointer

10/05/2012 12:52 jhazee21#61
Quote:
Originally Posted by кev View Post
Olly or anything that's able to search for byte sequences.

[Only registered and activated users can see links. Click Here To Register...]

/spoonfed

What should be the value..?
10/05/2012 16:29 caine291ph#62
thanks to all finally got it to work in c++
10/05/2012 19:21 jhazee21#63
I get correctly the base address and the offset, and I change the value to 0, but nothing happen. Please help..
0107BF90
40814
10/05/2012 21:19 keypress14#64
#include "stdafx.h"
#include <windows.h>



void Start();

int a;
BOOL APIENTRY DllMain(HMODULE hModule, DWORD ulReason, LPVOID lpReserved)
{
if (ulReason == DLL_PROCESS_ATTACH)
{
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)Start, 0, 0, 0);
MessageBoxA(NULL, "Successfully Injected", "Trainer", MB_OK);
}

return TRUE;

}


void Start()
{
while (1)
{

if (GetKeyState(VK_F12) < 0) // Turn On
{

DWORD *WH_Start = (DWORD*)(*(DWORD*)0x0B87170 + 0x40814);


for(a = 0; a<= 0x3ffff; a++)
{
memset( WH_Start , 0x0, 0x40000);
}

}




Sleep(1);
}
}


anyone can correct this?
10/06/2012 03:54 caine291ph#65
Quote:
Originally Posted by keypress14 View Post
#include "stdafx.h"
#include <windows.h>



void Start();

int a;
BOOL APIENTRY DllMain(HMODULE hModule, DWORD ulReason, LPVOID lpReserved)
{
if (ulReason == DLL_PROCESS_ATTACH)
{
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)Start, 0, 0, 0);
MessageBoxA(NULL, "Successfully Injected", "Trainer", MB_OK);
}

return TRUE;

}


void Start()
{
while (1)
{

if (GetKeyState(VK_F12) < 0) // Turn On
{

DWORD *WH_Start = (DWORD*)(*(DWORD*)0x0B87170 + 0x40814);


for(a = 0; a<= 0x3ffff; a++)
{
memset( WH_Start , 0x0, 0x40000);
}

}




Sleep(1);
}
}


anyone can correct this?
if you're using the for loop do not use memset
you can eliminate for loop just use memset

hope it helps ^^
10/06/2012 04:23 keypress14#66
Quote:
Originally Posted by caine291ph View Post
if you're using the for loop do not use memset
you can eliminate for loop just use memset

hope it helps ^^
DWORD *WH_Start = (DWORD*)(*(DWORD*)0x0B87170 + 0x40814);
memset( WH_Start , 0x0, 0x40000);

ITS OK??
10/10/2012 15:26 rantenor#67
kypress, i also tried it, the weird thing is that you cannot find the value of the base address. Something like the memory region is protected for reading. If your going to debug it you'll find that *(DWORD*)0x0B87170 returns 0. It's something that GG locks this portion of region.

CE can find this value because you use the CE without GG
10/11/2012 13:23 keypress14#68
CE IS not working in Mystery I dont know why..
if i used that code my PC get Hang..
10/11/2012 13:41 rantenor#69
keypress, yes your pc will hang cause you will get the very wrong WH_Start address
10/11/2012 13:58 keypress14#70
pls tell me what should i code..

DWORD *WH_Start = (DWORD*)(*(DWORD*)0x0B87170 + 0x40814);
memset( WH_Start , 0x0, 0x40000);

0x0B87170 = MC Base Address
0x40814 = This one static right?
pls tell me what to do..tnx

Anyone can debug this


if (GetKeyState(VK_F12) < 0) // Turn On
{

DWORD WH_StartA = *(DWORD*)("fixedmain.exe+C7CF90" +0x40814);
for(i = 0; i<= 0x3ffff; i++)
{
DWORD WH_StartB = *(DWORD*)(WH_StartA+i);
*(DWORD*)WH_StartB = 0;
}

}

Address from cabal PH fixedmain tnx.. im noob in C++ i just want to learn
10/12/2012 14:32 rantenor#71
dont bother to fix your code cause no problem with it. The bottomline is that this guide does not work anymore for dll injection
10/14/2012 12:43 Streidominating#72
nevermind my post.

feel free to delete
10/14/2012 18:04 keypress14#73
01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 06 00 00 00 06 00 00 00 06 00 00 00 06 00 00 00 06 00 00 00 06 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 06 00 00 00 06 00 00 00 06 00 00 00 06 00 00 00 06 00 00 00 06 00 00 00 06 00 00 00 06 00 00 00 07 00 00 00 06 00 00 00 06 00 00 00 06 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00


i tried this on MC but no address found?any comment?
10/15/2012 16:27 Wayntressierts#74
Quote:
Originally Posted by rantenor View Post
dont bother to fix your code cause no problem with it. The bottomline is that this guide does not work anymore for dll injection
wrong
10/15/2012 17:28 keypress14#75
yeh really wrong still working on PH ^^