[Release][C++ Code] GM/AOE/Range

07/24/2012 20:56 jazzdwayouwar#106
is this what you are talking sir?

Quote:
#define ADDR_BASE 0x0B8BBF0
#define OFFSET_BAR_COMBO 0x73a1
#define OFFSET_VALUE_COMBO 0x7384
if (GetKeyState(VK_F9) < 0)
{
int i = 0;
while(i == 0){

DWORD BAR_COMBO = *(DWORD*)ADDR_BASE;
*(DWORD*)(BAR_COMBO+OFFSET_BAR_COMBO) = 0;

DWORD VALUE_COMBO = *(DWORD*)ADDR_BASE;
*(DWORD*)(VALUE_COMBO+OFFSET_VALUE_COMBO) = 0;

if (GetKeyState(VK_F10) < 0)
i = 1;
Sleep(1);
}
}
thanks fror your response..

what specific tutorial sir that i should search??

thanks
07/24/2012 21:30 lintekens02#107
Successfully compiled one.. now to add some other stuff.. 2 thumbs up to TS ^_^
07/25/2012 04:01 bartbilf#108
Quote:
Originally Posted by deluxor View Post
Thanks to all "memory editing tools" released, next Cabal update will come with ASLR.

Fuck.
source?
07/25/2012 04:21 feiver2000#109
yeah where the source because it is weird cabal with ASLR.....
07/25/2012 05:08 alucardhxh#110
even its true its hackable but a litel harder to make us stronger :D
07/25/2012 11:28 lintekens02#111
Quote:
Originally Posted by deluxor View Post
Thanks to all "memory editing tools" released, next Cabal update will come with ASLR.

Fuck.
Address space layout randomization? where did you get that info??

EDIT: if they would be successful in doing. well this kind of security is hard for them to.. this is a new technology, its not perfect.
07/25/2012 15:20 syndrah#112
having trouble injecting my dll into cabalmain, saying unable to open process

using standard injector.
07/25/2012 16:55 rhonapearl#113
how is this? i'm a noob without the skills of a programmer but im an IT but i still did'nt take my programming subjects.

i got all of these errors . :(


1>------ Build started: Project: DLLMain, Configuration: Debug Win32 ------
1> DLLMain.cpp
1>DLLMain.cpp(11): error C2146: syntax error : missing ';' before identifier 'APIENTRY'
1>DLLMain.cpp(11): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>DLLMain.cpp(11): error C2146: syntax error : missing ';' before identifier 'DllMain'
1>DLLMain.cpp(11): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>DLLMain.cpp(11): error C2065: 'HMODULE' : undeclared identifier
1>DLLMain.cpp(11): error C2146: syntax error : missing ')' before identifier 'hModule'
1>DLLMain.cpp(11): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>DLLMain.cpp(11): error C2059: syntax error : ')'
1>DLLMain.cpp(12): error C2143: syntax error : missing ';' before '{'
1>DLLMain.cpp(12): error C2447: '{' : missing function header (old-style formal list?)
1>DLLMain.cpp(25): error C2065: 'VK_F11' : undeclared identifier
1>DLLMain.cpp(25): error C3861: 'GetKeyState': identifier not found
1>DLLMain.cpp(27): error C2065: 'DWORD' : undeclared identifier
1>DLLMain.cpp(27): error C2059: syntax error : ')'
1>DLLMain.cpp(28): error C2065: 'DWORD' : undeclared identifier
1>DLLMain.cpp(28): error C2059: syntax error : ')'
1>DLLMain.cpp(29): error C2065: 'DWORD' : undeclared identifier
1>DLLMain.cpp(29): error C2059: syntax error : ')'
1>DLLMain.cpp(32): error C2065: 'VK_F12' : undeclared identifier
1>DLLMain.cpp(32): error C3861: 'GetKeyState': identifier not found
1>DLLMain.cpp(34): error C2065: 'DWORD' : undeclared identifier
1>DLLMain.cpp(34): error C2059: syntax error : ')'
1>DLLMain.cpp(35): error C2065: 'DWORD' : undeclared identifier
1>DLLMain.cpp(35): error C2059: syntax error : ')'
1>DLLMain.cpp(36): error C2065: 'DWORD' : undeclared identifier
1>DLLMain.cpp(36): error C2059: syntax error : ')'
1>DLLMain.cpp(39): error C3861: 'Sleep': identifier not found
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
07/25/2012 17:01 syndrah#114
it would help if you provided the code.

also its unusual those errors your getting should show up at all, try adding this include line.

PHP Code:
#include "windows.h" 
this should solve most if not all of those errors.
07/25/2012 17:04 rhonapearl#115
Quote:
Originally Posted by syndrah View Post
it would help if you provided the code.
the code is the code of mr PSCBots

Quote:
Originally Posted by syndrah View Post
it would help if you provided the code.

also its unusual those errors your getting should show up at all, try adding this include line.

PHP Code:
#include "windows.h" 
this should solve most if not all of those errors.
now i added that lines , i only got these errors sir.


1>------ Build started: Project: DLLMain, Configuration: Debug Win32 ------
1> DLLMain.cpp
1>c:\Users\ren\documents\visual studio 2010\Projects\DLLMain\DLLMain\DLLMain.cpp : warning C4747: Calling managed '_DllMain@12': Managed code may not be run under loader lock, including the DLL entrypoint and calls reached from the DLL entrypoint
1> .NETFramework,Version=v4.0.AssemblyAttributes.cpp
1>DLLMain.obj : error LNK2028: unresolved token (0A00001E) "extern "C" short __stdcall GetKeyState(int)" (?GetKeyState@@$$J14YGFH@Z) referenced in function "void __cdecl Start(void)" (?Start@@$$FYAXXZ)
1>DLLMain.obj : error LNK2019: unresolved external symbol "extern "C" short __stdcall GetKeyState(int)" (?GetKeyState@@$$J14YGFH@Z) referenced in function "void __cdecl Start(void)" (?Start@@$$FYAXXZ)
1>c:\users\ren\documents\visual studio 2010\Projects\DLLMain\Debug\DLLMain.dll : fatal error LNK1120: 2 unresolved externals
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
07/25/2012 17:07 syndrah#116
so you copy+pasted it? psbots put that code there with mistakes on purpose to weed out the noobs out so the people who WANT to learn will persevere. if you copy and pasted it without understanding it then you just might want to quit now.

Not trying to be a douche, but you wont learn if people spoonfeed you, you got the internet google your problems.
07/25/2012 17:09 rhonapearl#117
ok sir . i'll try to solve this.
07/25/2012 17:09 syndrah#118
copy the exact code you have right now.

also just curious if anyone can address my injection problem

"cannot open procesS"
07/25/2012 17:33 rhonapearl#119
i think my problem is i dont have sdk . i'll just download it for my windows.h library . :)
07/25/2012 17:34 syndrah#120
there you go.