|
You last visited: Today at 08:23
Advertisement
Admin Console Trainer [Source]
Discussion on Admin Console Trainer [Source] within the S4 League Hacks, Bots, Cheats & Exploits forum part of the S4 League category.
03/12/2015, 16:54
|
#1
|
elite*gold: 47
Join Date: Feb 2010
Posts: 385
Received Thanks: 1,528
|
Admin Console Trainer [Source]
Yo, i wana share a simple example of Admin Console Trainer in S4League
Only Source!
dllmain.cpp
Code:
// dllmain.cpp : Defines the entry point for the DLL application.
#include "stdafx.h"
#include "CCFunction.h"
BOOL APIENTRY DllMain( HMODULE hModule,
DWORD ul_reason_for_call,
LPVOID lpReserved
)
{
switch (ul_reason_for_call)
{
case DLL_PROCESS_ATTACH:
LoadConsole();
case DLL_THREAD_ATTACH:
case DLL_THREAD_DETACH:
case DLL_PROCESS_DETACH:
break;
}
return TRUE;
}
CCFunction.cpp
Code:
#include "stdafx.h"
#include "CCFunction.h"
#include <detours.h>
void __declspec(naked) hkReadCom()
{
_asm
{
mov eaxadd, eax //Put the address contain in eax in eaxadd (DWORD var)
mov eax, [ebp - 0x04]
mov ebpadd, eax //Put the address contain in eax to ebpadd (DWORD var too)
}
char Command[20];
ReadProcessMemory(GetCurrentProcess(), (LPVOID)eaxadd, &Command, 20, NULL);//Just read the 20 first bytes of eaxadd and put in Command var
//Call my func with Command to parameter
ParseCommand(Command);
_asm
{
mov eax, [ebpadd]
mov [ebp - 0x04], eax
mov eax, [eaxadd]
push eax
mov ecx, [ebp - 0x04]
call addr//Call addr (DWORD var)
jmp RD_COM_Back//Jump to RD_COM_Back
}
}
_declspec(naked) void hkWriteResp()
{
_asm mov tmpResp, offset[MyResponse]
DWORD adr;
ReadProcessMemory(GetCurrentProcess(), (LPVOID)tmpResp, &adr, sizeof(int), NULL);
_asm {
mov eax, adr
push eax
push TypeResp
mov ecx, [ebp - 0x000001E8]
jmp RW_RES_Back
}
}
typedef int (__fastcall* typeCallResponse)(unsigned char, char*);
void ParseCommand(char* pCommand)
{
DWORD old = 0;
if(!strcmp(pCommand, "/infsp"))
{
if(!infsp)
{
VirtualProtect((LPVOID)0x00492AD2, 4, PAGE_EXECUTE_READWRITE, &old);
memcpy((void*)0x00492AD2, "\xDB\x45", 2);
VirtualProtect((LPVOID)0x00492AD2, 4, old, NULL);
ChangeResponse(" {CB-255,128,0,255}Infinite Sp Activated ! ", Response::Answer);
infsp = true;
}
else
{
VirtualProtect((LPVOID)0x00492AD2, 4, PAGE_EXECUTE_READWRITE, &old);
memcpy((void*)0x00492AD2, "\xD9\x45", 2);
VirtualProtect((LPVOID)0x00492AD2, 4, old, NULL);
ChangeResponse(" {CB-255,128,0,255}Infinite Sp Deactivated ! ", Response::Answer);
infsp = false;
}
}
else if(!strcmp(pCommand,"/help"))
{
/*typeCallResponse writResp = (typeCallResponse)0x00BE33B0;
writResp(1, " -testline1");*/
}
else
{
ChangeResponse(" {CB-255,255,255,255}Unknown Command! ", Response::Error);
}
}
void ChangeResponse(char* pResponse, Response::ResponseType resp)
{
MyResponse = pResponse;
TypeResp = resp;
}
void Activate()
{
DWORD old = 0;
VirtualProtect((LPVOID)0x00BE254A, 4, PAGE_EXECUTE_READWRITE, &old);
memcpy((void*)0x00BE254A, "\x75", 1);
VirtualProtect((LPVOID)0x00BE254A, 4, old, NULL);
}
int __fastcall hkWriteResponse(void *typ, char* command)
{
MessageBoxA(0, command, "", 0);
return mWriteResponse(typ, command);
}
void LoadConsole()
{
//Detours
DetourFunction((PBYTE)0x00BE25B3, (PBYTE)hkReadCom);
DetourFunction((PBYTE)0x00BE2ECA, (PBYTE)hkWriteResp);//display answer visualy
//mWriteResponse = (tWriteResponse)DetourFunction((PBYTE)0x00BE33B0, (PBYTE)hkWriteResponse);
Activate();
}
CCFunction.h
Code:
#include <Windows.h>
#include <string>
class Response {
public:
enum ResponseType: int
{
Answer = 01,
Error = 02,
Request = 03
};
};
static int __fastcall hkWriteResponse(void *typ, char* command);
typedef int (__fastcall *tWriteResponse)(void *typ, char* command);
static tWriteResponse mWriteResponse;
static char* MyResponse = "Unknown command ;<";
static int TypeResp = 01;
void LoadConsole();
//bool hkCallResp(char* arg01, int arg02);
void ParseCommand(char* pCommand);
void ChangeResponse(char* pResponse, Response::ResponseType resp);
void WriteResponse(char* pResponse, Response::ResponseType resp);
void Activate();
static DWORD hkCall = 0x00BE33B0;
static DWORD tmpResp = 0;
static DWORD eaxadd = 0;
static DWORD ebpadd = 0;
static DWORD addr = 0x00BE2D90;
static DWORD RD_COM_Back = 0x00BE25BC;
static DWORD ResponseConsole = 0;
static DWORD typeMsg = 0;
static DWORD RW_RES_Back = 0x00BE2ED3;
static bool infsp = false;
|
|
|
03/12/2015, 17:26
|
#2
|
elite*gold: 75
Join Date: Feb 2015
Posts: 445
Received Thanks: 60
|
Post your Hack Realeases there >
and there is a Admin Console Hack :
dunnu if u just Copied or wut
|
|
|
03/12/2015, 17:42
|
#3
|
elite*gold: 47
Join Date: Feb 2010
Posts: 385
Received Thanks: 1,528
|
Quote:
Originally Posted by ☠Toxxi™
Post your Hack Realeases there >
and there is a Admin Console Hack :
dunnu if u just Copied or wut
|
copied what?
|
|
|
03/12/2015, 19:22
|
#4
|
elite*gold: 0
Join Date: Feb 2011
Posts: 282
Received Thanks: 492
|
Nice C/C xD
Almost the same of my code
And same commentary that i have post in a skype conv
So nice leecher
|
|
|
03/12/2015, 19:36
|
#5
|
elite*gold: 0
Join Date: Sep 2014
Posts: 545
Received Thanks: 586
|
[11:23:46 AM] Le monde d'Astro #Judgement: I don't post my code :x
Just the hook for read command
[11:24:45 AM | Edited 11:26:46 AM] Le monde d'Astro #Judgement: anyway arkade nice leecher :c
[11:30:58 AM] Le monde d'Astro #Judgement: who have leak my readcomhook ?
[11:32:02 AM] wtfblub: who the **** cares
[11:32:07 AM] wtfblub: its **** anyway
[11:32:10 AM] [Beatrice]: Did arkade leech that
[11:32:16 AM] [Beatrice]: :c
[11:32:21 AM] [F]aze | S4 Faq: yy
[11:32:32 AM] wtfblub: everything he has is leeched
[11:33:13 AM] Le monde d'Astro #Judgement: But if he has my commentary of my hook, somebody has leak it. So nice break rule xD
[11:33:59 AM] Step29: Unfortunatly..
[11:34:21 AM] Step29: Well. I guess it's safe to say now that to never post codes here
[11:34:31 AM | Edited 11:34:40 AM] Step29: because we got a Level 0 ****** in this group chat now.
|
|
|
03/12/2015, 20:09
|
#6
|
elite*gold: 1
Join Date: Apr 2010
Posts: 13,772
Received Thanks: 15,036
|
S4 League -> S4 League Hacks, Bots, Cheats & Exploits
#moved
|
|
|
03/12/2015, 20:14
|
#7
|
elite*gold: 0
Join Date: Jan 2015
Posts: 146
Received Thanks: 81
|
Quote:
Originally Posted by [P2933]Step29
[11:23:46 AM] Le monde d'Astro #Judgement: I don't post my code :x
Just the hook for read command
[11:24:45 AM | Edited 11:26:46 AM] Le monde d'Astro #Judgement: anyway arkade nice leecher :c
[11:30:58 AM] Le monde d'Astro #Judgement: who have leak my readcomhook ?
[11:32:02 AM] wtfblub: who the **** cares
[11:32:07 AM] wtfblub: its **** anyway
[11:32:10 AM] [Beatrice]: Did arkade leech that
[11:32:16 AM] [Beatrice]: :c
[11:32:21 AM] [F]aze | S4 Faq: yy
[11:32:32 AM] wtfblub: everything he has is leeched
[11:33:13 AM] Le monde d'Astro #Judgement: But if he has my commentary of my hook, somebody has leak it. So nice break rule xD
[11:33:59 AM] Step29: Unfortunatly..
[11:34:21 AM] Step29: Well. I guess it's safe to say now that to never post codes here
[11:34:31 AM | Edited 11:34:40 AM] Step29: because we got a Level 0 ****** in this group chat now.
|
hmm..
|
|
|
03/12/2015, 20:30
|
#8
|
elite*gold: 16
Join Date: Mar 2012
Posts: 492
Received Thanks: 3,453
|
O.o Thanks arkade <3
|
|
|
03/12/2015, 20:37
|
#9
|
elite*gold: 0
Join Date: Jan 2015
Posts: 146
Received Thanks: 81
|
Quote:
Originally Posted by alexmen10
O.o Thanks arkade <3
|
devilish smile hshdahg
|
|
|
03/12/2015, 22:01
|
#10
|
elite*gold: 47
Join Date: Feb 2010
Posts: 385
Received Thanks: 1,528
|
Quote:
Originally Posted by astropilote
Nice C/C xD
Almost the same of my code
And same commentary that i have post in a skype conv
So nice leecher
|
nope, just figured out it my way 
i haven't asked for code anyone ^^
|
|
|
03/12/2015, 23:25
|
#11
|
elite*gold: 0
Join Date: Feb 2011
Posts: 282
Received Thanks: 492
|
Quote:
Originally Posted by arkade
nope, just figured out it my way 
i haven't asked for code anyone ^^
|
Yeah so explain me a thing..
It's my code (with commentary) that i share the 4th March on a skype conv with me, Faze, Nociif and killer1997.
So explain me how you do to rewrite the SAME comments (and same var names) on "your" code xDDDD
And it's strange, the only commented part of code in all your code is my part of code that i have share
|
|
|
03/13/2015, 01:14
|
#12
|
elite*gold: 0
Join Date: Oct 2014
Posts: 83
Received Thanks: 172
|
i will tem kill >.< there isnt the address >.< and why do you post the source its so bad dude
|
|
|
03/13/2015, 06:08
|
#13
|
elite*gold: 0
Join Date: Sep 2014
Posts: 545
Received Thanks: 586
|
Quote:
Originally Posted by astropilote
Yeah so explain me a thing..
It's my code (with commentary) that i share the 4th March on a skype conv with me, Faze, Nociif and killer1997.
So explain me how you do to rewrite the SAME comments (and same var names) on "your" code xDDDD
And it's strange, the only commented part of code in all your code is my part of code that i have share 
|
I know for a fact that Faze and Noclif are smart enough not to leak out stuff here unless permission was granted.
I don't mean to point out fingers, But.....
Regardless, Sorry this happened to you. It's so shameful and embarrassing that the source was leaked out to the public by this dumbass. But I guess it's the best way to not share your code with anyone you cannot completely trust.
Leaker should kill himself.
|
|
|
03/13/2015, 06:56
|
#14
|
elite*gold: 130
Join Date: Apr 2012
Posts: 1,173
Received Thanks: 670
|
Quote:
Originally Posted by FaYm#1
i will tem kill >.< there isnt the address >.< and why do you post the source its so bad dude
|
.......
Srsly ? Everytime the same.
everyone, EVERYONE with a bit know of cheat engine can filter all this things the complete changed asm with 5 clicks and have the adress......
|
|
|
03/13/2015, 12:17
|
#15
|
elite*gold: 47
Join Date: Feb 2010
Posts: 385
Received Thanks: 1,528
|
Quote:
Originally Posted by astropilote
Yeah so explain me a thing..
It's my code (with commentary) that i share the 4th March on a skype conv with me, Faze, Nociif and killer1997.
So explain me how you do to rewrite the SAME comments (and same var names) on "your" code xDDDD
And it's strange, the only commented part of code in all your code is my part of code that i have share 
|
i commented the same XDDD
|
|
|
 |
|
Similar Threads
|
Admin Console mit CE
01/10/2012 - Last Chaos - 1 Replies
N'abend, da ich ich diesbezüglich nichts mit der Sufu gefunden habe, würd ich gern wissen, ob es möglich ist mit Cheat Engine eine Admin Console zu erstellen.
Vielen Dank schon mal im vorraus.
|
Help with admin console plz
05/18/2011 - Last Chaos - 5 Replies
Hello for aweryone, i am from russian last chaos server , who can help me? how to find admin console adress? after the resresh client this funcktion isnt work(((( Help plz
|
Admin Console
01/13/2011 - Last Chaos - 1 Replies
Hallo Leute !!!
Gibt es eigentlich zur Zeit eine Admin Tool für die GER Version ???
Meine sowas ähnlichen wie Offensivkiller für die US gemacht hat ?
|
Admin-Console
07/31/2010 - Last Chaos - 2 Replies
Hi,
wollte mal fragen ob es ne möglichkeit gibt das die admin-console funk.
anscheind hat das gamigo gefixt =/
|
Admin console
04/28/2010 - Last Chaos - 13 Replies
Also da mann ja mit der admin consoe mit der taste : ^ . ein eingabe fester öfnen kann habe ich mal aus spass da einfach maal ein wenig rumgedrückt und auf einmal kamen comandos. wenn mann das auf hat und die taste under dem :^ drückt dann kommen diese verschiedenen comandos und bei einem comando kann mann daten speichern lassen die man in seinem lc ordner findet !
1. wer kann mir sagen wofür das gut ist ?
2. Kann mann da vlt was mit anstellen oder raus greifen infos oder anderes?
|
All times are GMT +1. The time now is 08:24.
|
|