|
You last visited: Today at 13:29
Advertisement
[Release] Wallhack method all Client / find Maparea pointer
Discussion on [Release] Wallhack method all Client / find Maparea pointer within the Cabal Guides & Templates forum part of the Cabal Online category.
10/05/2012, 12:52
|
#61
|
elite*gold: 0
Join Date: Jul 2012
Posts: 48
Received Thanks: 7
|
Quote:
Originally Posted by кev
Olly or anything that's able to search for byte sequences.
/spoonfed
|
What should be the value..?
|
|
|
10/05/2012, 16:29
|
#62
|
elite*gold: 0
Join Date: Aug 2008
Posts: 51
Received Thanks: 118
|
thanks to all finally got it to work in c++
|
|
|
10/05/2012, 19:21
|
#63
|
elite*gold: 0
Join Date: Jul 2012
Posts: 48
Received Thanks: 7
|
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
|
#64
|
elite*gold: 0
Join Date: Apr 2010
Posts: 65
Received Thanks: 9
|
#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
|
#65
|
elite*gold: 0
Join Date: Aug 2008
Posts: 51
Received Thanks: 118
|
Quote:
Originally Posted by keypress14
#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
|
#66
|
elite*gold: 0
Join Date: Apr 2010
Posts: 65
Received Thanks: 9
|
Quote:
Originally Posted by caine291ph
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
|
#67
|
elite*gold: 0
Join Date: Jan 2011
Posts: 53
Received Thanks: 36
|
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
|
#68
|
elite*gold: 0
Join Date: Apr 2010
Posts: 65
Received Thanks: 9
|
@rantenor
CE IS not working in Mystery I dont know why..
if i used that code my PC get Hang..
|
|
|
10/11/2012, 13:41
|
#69
|
elite*gold: 0
Join Date: Jan 2011
Posts: 53
Received Thanks: 36
|
keypress, yes your pc will hang cause you will get the very wrong WH_Start address
|
|
|
10/11/2012, 13:58
|
#70
|
elite*gold: 0
Join Date: Apr 2010
Posts: 65
Received Thanks: 9
|
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
|
#71
|
elite*gold: 0
Join Date: Jan 2011
Posts: 53
Received Thanks: 36
|
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
|
#72
|
elite*gold: 0
Join Date: Jul 2008
Posts: 58
Received Thanks: 4
|
nevermind my post.
feel free to delete
|
|
|
10/14/2012, 18:04
|
#73
|
elite*gold: 0
Join Date: Apr 2010
Posts: 65
Received Thanks: 9
|
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
|
#74
|
elite*gold: 0
Join Date: Feb 2012
Posts: 424
Received Thanks: 422
|
Quote:
Originally Posted by rantenor
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
|
#75
|
elite*gold: 0
Join Date: Apr 2010
Posts: 65
Received Thanks: 9
|
yeh really wrong still working on PH ^^
|
|
|
All times are GMT +1. The time now is 13:30.
|
|