OldSchoolHack

Registrieren / Anmelden Deutsch
You can change the page language! (Hide notification)

Benutzersuche: BeneCrack

Such-Informationen
BeneCrack
Themen im Forum
Thema Forum Letzter Beitrag Beiträge Zugriffe
icon

Go to first new post [Release] root.´s Cod5 Hack for Patch 1.1 Erstellt am: Mi 12. Nov 2008, 16:21

KN4CK3R

preview Vorschau

Go To Post

Hallo,
bin neu hier. Dein Cod5 hack ist echt klasse.
Hab nur eine Frage kannst ma du die source zu diesem hack geben?  Wär da echt dankbar, weil ich lern gerade solche hacks selber zu machen. Nur brauch ich ein paar sources damit ich sie studiere und daraus etwas lernen kann. Hab auch schon die Tutorial reihe von KN4CK3R durchgearbeitet. Ist echt Klasse!
Also, ich freu mich auf deine Antwort.
Call of Duty 5: World at War

Mi 27. Jul 2016, 00:13

von GenetikOG Go to last post
5 2533
icon

Go to first new post [Release] root.´s Cod5 Hack for Patch 1.1 Erstellt am: Mi 12. Nov 2008, 16:21

KN4CK3R

preview Vorschau

Go To Post

OK, danke schön
Call of Duty 5: World at War

Mi 27. Jul 2016, 00:13

von GenetikOG Go to last post
5 2533
icon

Go to first new post Cod4 MemHack Tutorial by root. (Multi-page thread 1 2) Erstellt am: Do 9. Okt 2008, 15:10

root.

preview Vorschau

Go To Post

Oh fuck, hab mich grad verschrieben, oder war es doch ein Denkfehler.
Egal.
Auf jeden Fall kommt dieser Fehler beim debuggen.
Tutorials

Sa 25. Dez 2010, 14:11

von ShowU Go to last post
32 8736
icon

Go to first new post Cod4 MemHack Tutorial by root. (Multi-page thread 1 2) Erstellt am: Do 9. Okt 2008, 15:10

root.

preview Vorschau

Go To Post

Also, wenn ich diesen Hack Compilieren will kommt bei mir ein Fehler:

Zitat
main.cpp(44) : error C2440: 'initializing' : cannot convert from 'const char [15]' to 'LPCWSTR'

Zitat
window = FindWindow(NULL, "Call of Duty 4"); //Finde das Call of Duty 4 Fenster (Danke an KN4CK3R für diesen Teil)
Tutorials

Sa 25. Dez 2010, 14:11

von ShowU Go to last post
32 8736
icon

Go to first new post Cheatenginesuche von Abschussserien Erstellt am: So 31. Jan 2010, 13:29

Namor

preview Vorschau

Go To Post

Dass würde ich auch gerne wissen
Call of Duty 6: Modern Warfare 2

Sa 13. Feb 2010, 14:06

von Namor Go to last post
15 1915
icon

Go to first new post MemHack Frage (Multi-page thread 1 2) Erstellt am: Do 13. Nov 2008, 20:58

BeneCrack

preview Vorschau

Go To Post

OK, thx.

Also ich glaube, ich habe eh ganz gute C++ kenntnisse, Hab auch schon einen eigenen Loader gebastelt der die dll's in die exe ladet.

Nur, ich weis nicht wie man eine Funktion vom Spiel hooken kann. Also mir fehlt die Idee dazu, der Algorithmus, usw.
Kann mir das jemand erklären oder ein Bespiel schreiben?
Tutorials

Di 13. Okt 2009, 01:55

von PDX Go to last post
28 3005
icon

Go to first new post MemHack Frage (Multi-page thread 1 2) Erstellt am: Do 13. Nov 2008, 20:58

BeneCrack

preview Vorschau
Tutorials

Di 13. Okt 2009, 01:55

von PDX Go to last post
28 3005
icon

Go to first new post MemHack Frage (Multi-page thread 1 2) Erstellt am: Do 13. Nov 2008, 20:58

BeneCrack

preview Vorschau

Go To Post

Ich habe einen NameTag Source Code gefunden.
Ich glaube nicht dass er hier detouring verwendet hat, oder?








main.cpp:

#include <windows.h>
#include "main.h"
bool Nametags=true; // used to see if nametags is on or not.

int __stdcall DllMain(void* Module, unsigned long Reason, void* Reserved)
{
   if(Reason == 1) // if injected do code below..
 {

   Modification(1); // turn on memory modifications
   return 1;
 
 }
 
  return 1;

}

void __stdcall Modification(unsigned int arg){
 if(arg == 1){
  DWORD Protection;


        // nametags
   VirtualProtect((void*)lpteamc, 6, PAGE_READWRITE, &Protection);
memcpy((void*)lpteamc, (const void*)Six, 6); // nop it
VirtualProtect((void*)lpteamc, 6, Protection, 0);
   
//distance (visibility)
VirtualProtect((void*)lpdist, 2, PAGE_READWRITE, &Protection);
memcpy((void*)lpdist, (const void*)Two, 2);  // nop it
VirtualProtect((void*)lpdist, 2, Protection, 0);

}
}

main.h:


#define teams 0x42E090  // Where the function starts
int lpteamc = teams + 0xDC; // Team Check (disable to draw both)
int lpdist = teams + 0xFE; // Distance check, if drawn through walls etc

// Nop'd values kekeke
unsigned char Two[2]        = { 0x90, 0x90 };
unsigned char Six[6]        = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };

// Original values (if you want to make an on/off toggle etc
unsigned char NameTags[6]   = { 0x0F, 0x85, 0xCE, 0x00, 0x00, 0x00 };
unsigned char Distance[2] = { 0x74, 0x25 };


// memory init func proto
void __stdcall Modification(unsigned int); //proto

// This is the ollydbg info: (this is 1.0 INFO)
/*
0042E19C  |. 0F85 CE000000  |JNZ iw3mp.0042E270
0042DE94  |. 0F85 09020000  JNZ iw3mp.0042E0A3

0042E19C   0F84 CE000000    JE iw3mp.0042E270
0042DE94   0F84 09020000    JE iw3mp.0042E0A3
*/
Tutorials

Di 13. Okt 2009, 01:55

von PDX Go to last post
28 3005
icon

Go to first new post MemHack Frage (Multi-page thread 1 2) Erstellt am: Do 13. Nov 2008, 20:58

BeneCrack

preview Vorschau

Go To Post

Zitat
#define teams 0x42E090 // Where the function starts

Was ist das dann für eine Adresse?
Tutorials

Di 13. Okt 2009, 01:55

von PDX Go to last post
28 3005
icon

Go to first new post MemHack Frage (Multi-page thread 1 2) Erstellt am: Do 13. Nov 2008, 20:58

BeneCrack

preview Vorschau

Go To Post

Also im Spiel gibts eine Nametagfunktion??? Ich hab das noch nie bemärkt oder ich habs vergessen.
Naja egal, is nicht wichtig, hauptssache es exestiert.
Und an diesem Punkt sind wir wieder gelandet.
Nähmlich, wie finde ich diese Adresse??
Tutorials

Di 13. Okt 2009, 01:55

von PDX Go to last post
28 3005
icon

Go to first new post MemHack Frage (Multi-page thread 1 2) Erstellt am: Do 13. Nov 2008, 20:58

BeneCrack

preview Vorschau

Go To Post

CheatEngine??? Aber wie soll das gehn, bei Cheat engine kann man nur Werte angeben.
Dass hat überhaupt keinen zusammenhang mit einem Nametag, also es hat keinen Wert oder den Wert kann man nicht ändern.
Desswegen kann ich so schwer verstehn wie man nach einer Adresse für Nametags suchen kann.
Tutorials

Di 13. Okt 2009, 01:55

von PDX Go to last post
28 3005
icon

Go to first new post MemHack Frage (Multi-page thread 1 2) Erstellt am: Do 13. Nov 2008, 20:58

BeneCrack

preview Vorschau

Go To Post

Achso!!!!

Ich mach einfach einen neuen Server, dann schreib ich in die Konsole "/cg_drawThroughWalls 667788"
Suche diesen Wert in CheatEngine und dann hab ich die Adresse. Und nachher mach ich einfach ein kleines Proggi der das bei den Gegnern macht.
Hab ich das richtig verstanden?
Tutorials

Di 13. Okt 2009, 01:55

von PDX Go to last post
28 3005
icon

Go to first new post MemHack Frage (Multi-page thread 1 2) Erstellt am: Do 13. Nov 2008, 20:58

BeneCrack

preview Vorschau

Go To Post

OK, einfach die Adresse finden, und dann mit OllyDbg die Funktion zurückverfolgen.
Tutorials

Di 13. Okt 2009, 01:55

von PDX Go to last post
28 3005
icon

Go to first new post MemHack Frage (Multi-page thread 1 2) Erstellt am: Do 13. Nov 2008, 20:58

BeneCrack

preview Vorschau

Go To Post

Und was ist dann dabei der schwierigere Teil?
Tutorials

Di 13. Okt 2009, 01:55

von PDX Go to last post
28 3005
icon

Go to first new post MemHack Frage (Multi-page thread 1 2) Erstellt am: Do 13. Nov 2008, 20:58

BeneCrack

preview Vorschau

Go To Post

oha, klingt ganz schön schwierig.
Kannst ma du ein Tutorial empfehlen, oda kannst ma du eine kleine Beschreibung schreiben.
Wär da sehr dankbar.
Tutorials

Di 13. Okt 2009, 01:55

von PDX Go to last post
28 3005
icon

Go to first new post MemHack Frage (Multi-page thread 1 2) Erstellt am: Do 13. Nov 2008, 20:58

BeneCrack

preview Vorschau

Go To Post

Ja, richtig
Tutorials

Di 13. Okt 2009, 01:55

von PDX Go to last post
28 3005
icon

Go to first new post MemHack Frage (Multi-page thread 1 2) Erstellt am: Do 13. Nov 2008, 20:58

BeneCrack

preview Vorschau

Go To Post

Jo, wär echt Klasse.
Tutorials

Di 13. Okt 2009, 01:55

von PDX Go to last post
28 3005
icon

Go to first new post MemHack Frage (Multi-page thread 1 2) Erstellt am: Do 13. Nov 2008, 20:58

BeneCrack

preview Vorschau

Go To Post

Also, wenn root keine Zeit hat und mir nicht helfen kann, kann es vl. wär anderer.
Tutorials

Di 13. Okt 2009, 01:55

von PDX Go to last post
28 3005
icon

Go to first new post MemHack Frage (Multi-page thread 1 2) Erstellt am: Do 13. Nov 2008, 20:58

BeneCrack

preview Vorschau

Go To Post

Hi,


Also, ich wollte schon mal immer wissen wie ich die Adresse eines gegnerischen Spielers rausfinden kann.
Also zb. in Cod4 will ich die Position von einem anderen Spieler wissen und dazu brauch ich die Adresse.
Aber ich hab überhaupt keine Idee wie ich sie rausfinden kann.
Gibt es vl. ein Tutorial dazu oder kann mir kurz einer von euch beschreiben wie dass gehn soll?
"Die Grundlagen des Memory Hackings 1 & 2" habe ich ma schon durchgelessen. Dass hift mir nicht weiter!
Hoffentlich kann mir jemand von euch helfen.

Freu mich schon auf eine Antwort
Tutorials

Di 13. Okt 2009, 01:55

von PDX Go to last post
28 3005
icon

Go to first new post Call of Duty 5 OMG die scheiß Hunde und Abschusskamera!!! Erstellt am: Fr 14. Nov 2008, 09:05

Sperminator

preview Vorschau

Go To Post

Warum sind dass 2 Fehler, dass ist beabsichtigt.
Und übrigens ist die Abschusskamera und die Hunde einfach geil.
Wenn dir die Abschusskamera nicht gefällt kannst ja "F" drücken wenn die Abschusskamera kommt, damits weitergeht!
Call of Duty 5: World at War

Do 22. Jan 2009, 18:23

von Phaeton Go to last post
4 1302