OldSchoolHack

Register / Login English

User Search: BeneCrack

Search-Information
BeneCrack
Threads
Thread Forum Last Post Posts Views
icon

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

KN4CK3R

preview Preview

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

Wed 27. Jul 2016, 00:13

by GenetikOG Go to last post
5 2487
icon

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

KN4CK3R

preview Preview

Go To Post

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

Wed 27. Jul 2016, 00:13

by GenetikOG Go to last post
5 2487
icon

Go to first new post Cod4 MemHack Tutorial by root. (Multi-page thread 1 2) Posted on: Thu 9. Oct 2008, 15:10

root.

preview Preview

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

Sat 25. Dec 2010, 14:11

by ShowU Go to last post
32 8736
icon

Go to first new post Cod4 MemHack Tutorial by root. (Multi-page thread 1 2) Posted on: Thu 9. Oct 2008, 15:10

root.

preview Preview

Go To Post

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

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

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

Sat 25. Dec 2010, 14:11

by ShowU Go to last post
32 8736
icon

Go to first new post Cheatenginesuche von Abschussserien Posted on: Sun 31. Jan 2010, 13:29

Namor

preview Preview

Go To Post

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

Sat 13. Feb 2010, 14:06

by Namor Go to last post
15 1913
icon

Go to first new post MemHack Frage (Multi-page thread 1 2) Posted on: Thu 13. Nov 2008, 20:58

BeneCrack

preview Preview

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

Tue 13. Oct 2009, 01:55

by PDX Go to last post
28 2995
icon

Go to first new post MemHack Frage (Multi-page thread 1 2) Posted on: Thu 13. Nov 2008, 20:58

BeneCrack

preview Preview
Tutorials

Tue 13. Oct 2009, 01:55

by PDX Go to last post
28 2995
icon

Go to first new post MemHack Frage (Multi-page thread 1 2) Posted on: Thu 13. Nov 2008, 20:58

BeneCrack

preview Preview

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

Tue 13. Oct 2009, 01:55

by PDX Go to last post
28 2995
icon

Go to first new post MemHack Frage (Multi-page thread 1 2) Posted on: Thu 13. Nov 2008, 20:58

BeneCrack

preview Preview

Go To Post

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

Was ist das dann für eine Adresse?
Tutorials

Tue 13. Oct 2009, 01:55

by PDX Go to last post
28 2995
icon

Go to first new post MemHack Frage (Multi-page thread 1 2) Posted on: Thu 13. Nov 2008, 20:58

BeneCrack

preview Preview

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

Tue 13. Oct 2009, 01:55

by PDX Go to last post
28 2995
icon

Go to first new post MemHack Frage (Multi-page thread 1 2) Posted on: Thu 13. Nov 2008, 20:58

BeneCrack

preview Preview

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

Tue 13. Oct 2009, 01:55

by PDX Go to last post
28 2995
icon

Go to first new post MemHack Frage (Multi-page thread 1 2) Posted on: Thu 13. Nov 2008, 20:58

BeneCrack

preview Preview

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

Tue 13. Oct 2009, 01:55

by PDX Go to last post
28 2995
icon

Go to first new post MemHack Frage (Multi-page thread 1 2) Posted on: Thu 13. Nov 2008, 20:58

BeneCrack

preview Preview

Go To Post

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

Tue 13. Oct 2009, 01:55

by PDX Go to last post
28 2995
icon

Go to first new post MemHack Frage (Multi-page thread 1 2) Posted on: Thu 13. Nov 2008, 20:58

BeneCrack

preview Preview

Go To Post

Und was ist dann dabei der schwierigere Teil?
Tutorials

Tue 13. Oct 2009, 01:55

by PDX Go to last post
28 2995
icon

Go to first new post MemHack Frage (Multi-page thread 1 2) Posted on: Thu 13. Nov 2008, 20:58

BeneCrack

preview Preview

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

Tue 13. Oct 2009, 01:55

by PDX Go to last post
28 2995
icon

Go to first new post MemHack Frage (Multi-page thread 1 2) Posted on: Thu 13. Nov 2008, 20:58

BeneCrack

preview Preview

Go To Post

Ja, richtig
Tutorials

Tue 13. Oct 2009, 01:55

by PDX Go to last post
28 2995
icon

Go to first new post MemHack Frage (Multi-page thread 1 2) Posted on: Thu 13. Nov 2008, 20:58

BeneCrack

preview Preview

Go To Post

Jo, wär echt Klasse.
Tutorials

Tue 13. Oct 2009, 01:55

by PDX Go to last post
28 2995
icon

Go to first new post MemHack Frage (Multi-page thread 1 2) Posted on: Thu 13. Nov 2008, 20:58

BeneCrack

preview Preview

Go To Post

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

Tue 13. Oct 2009, 01:55

by PDX Go to last post
28 2995
icon

Go to first new post MemHack Frage (Multi-page thread 1 2) Posted on: Thu 13. Nov 2008, 20:58

BeneCrack

preview Preview

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

Tue 13. Oct 2009, 01:55

by PDX Go to last post
28 2995
icon

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

Sperminator

preview Preview

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

Thu 22. Jan 2009, 18:23

by Phaeton Go to last post
4 1302