OldSchoolHack

Register / Login English

User Search: KN4CK3R

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

Go to first new post [C++]gehookte Funktion nochmal hooken Posted on: Mon 25. Jan 2010, 17:47

KN4CK3R

preview Preview

Go To Post

Hallo,

wer schonmal versucht hat eine gehookte Funktion nochmal zu hooken, der weiß, das crasht. Problematisch wird das ganze, wenn man die Funktion unbedingt braucht, so brauche ich z.B. die Funktionen GetCursorPos und SetCursorPos für mein Ingame GUI. Normalerweise ist das kein Problem, aber xFire oder das STEAM Overlay hooken die Funktionen auch. Wenn man versucht die dann nochmal zu hooken, stürzt das Programm ab, weil die Sprungadresse des alten Hooks in eurem "Backup" nicht mehr funktioniert. Deswegen habe ich heute eine neue Funktion geschrieben, mit der man auch gehookte Funktionen nochmal hooken kann. Dazu wird einfach eine neue Sprungadresse für den alten Hook berechnet und dann eingebaut. Damit läufts dann.

TEXT Code:
  1. void *SafeDetourFunc(BYTE *src, const BYTE *dst, const int len)
  2. {
  3. BYTE *jmp;
  4. DWORD dwback;
  5. DWORD jumpto, newjump;
  6.  
  7. VirtualProtect(src,len,PAGE_READWRITE,&dwback);
  8.  
  9. if(src[0] == 0xE9)
  10. {
  11. jmp = (BYTE*)malloc(10);
  12. jumpto = (*(DWORD*)(src+1))+((DWORD)src)+5;
  13. newjump = (jumpto-(DWORD)(jmp+5));
  14. jmp[0] = 0xE9;
  15. *(DWORD*)(jmp+1) = newjump;
  16. jmp += 5;
  17. jmp[0] = 0xE9;
  18. *(DWORD*)(jmp+1) = (DWORD)(src-jmp);
  19. }
  20. else
  21. {
  22. jmp = (BYTE*)malloc(5+len);
  23. memcpy(jmp,src,len);
  24. jmp += len;
  25. jmp[0] = 0xE9;
  26. *(DWORD*)(jmp+1) = (DWORD)(src+len-jmp)-5;
  27. }
  28.  
  29. src[0] = 0xE9;
  30. *(DWORD*)(src+1) = (DWORD)(dst - src) - 5;
  31.  
  32. for(int i = 5; i < len; i++)
  33. src[i] = 0x90;
  34.  
  35. VirtualProtect(src,len,dwback,&dwback);
  36.  
  37. return (jmp-len);
  38. }

Viel Spaß mit eurem MausGUI.

greetz KN4CK3R
VB, C/C++, Delphi, etc

Mon 25. Jan 2010, 20:24

by Dovahkiin Go to last post
3 933
icon

Go to first new post [C++]gehookte Funktion nochmal hooken Posted on: Mon 25. Jan 2010, 17:47

KN4CK3R

preview Preview

Go To Post

vielleicht wenn er ein Update braucht

greetz KN4CK3R
VB, C/C++, Delphi, etc

Mon 25. Jan 2010, 20:24

by Dovahkiin Go to last post
3 933
icon

Go to first new post OSH userbars Posted on: Fri 22. Jan 2010, 15:50

Dovahkiin

preview Preview

Go To Post

das zweite failt irgendwie und beim dritten wäre es vll besser gewesen den Effekt aus der oberen Hälfte nicht über das Logo zu legen

greetz KN4CK3R
Laberecke

Sat 23. Jan 2010, 19:08

by Dovahkiin Go to last post
17 696
icon

Go to first new post OSH userbars Posted on: Fri 22. Jan 2010, 15:50

Dovahkiin

preview Preview

Go To Post

genau, seid lieber froh, dass ich das Logo und die Grafiken nicht selbst gemacht habe, sonst würdet ihr euch für eure Userbar schämen.

greetz KN4CK3R
Laberecke

Sat 23. Jan 2010, 19:08

by Dovahkiin Go to last post
17 696
icon

Go to first new post [Release] OldSchoolHack BP CoD6 RC4 Posted on: Fri 22. Jan 2010, 23:33

KN4CK3R

preview Preview

Go To Post

changes:
RC3->RC4
-offsetupdate
RC2->RC3
-new method for nametags
-added box esp
-added injector
RC1->RC2
-offsetupdate

0. injector and dll must have the SAME name (osh.exe, osh.dll or whatever)
1. start CoD6 1.0.180
2. inject the hack dll with your favorite injector
3. play

Features:

- Nametags
- Box ESP
- VAC proof
http://www.abload.de/thumb/oshbpcod6rc2rmed.jpg

Download OldSchoolHack BP CoD6 RC4
Call of Duty 6: Modern Warfare 2

Sat 23. Jan 2010, 17:00

by fr0sti Go to last post
1 2995
icon

Go to first new post Model Hack (Multi-page thread 1 2) Posted on: Mon 18. Jan 2010, 19:37

kakashi

preview Preview
Counter-Strike: Source

Sat 23. Jan 2010, 15:42

by Dovahkiin Go to last post
35 1911
icon

Go to first new post [Release] OldSchoolHack DoDS BP RC2 Posted on: Sun 10. Jan 2010, 11:19

KN4CK3R

preview Preview

Go To Post

OldSchoolHack - Day of Defeat:Source - BP
by KN4CK3R

1. start DoD:S
2. start oshbpdods.exe
3. read the infos in the DoDS console
4. play

Features:

- sv_pure Bypass
- sv_pure Bypass (zBlock)
- Replicated CVAR Bypass

- sv_cheats Bypass / NUM1
- sv_consistency Bypass / NUM2
- Modelwireframe / NUM3
- no Particles / NUM4
- Fullbrightmode / NUM5
- no Sky / NUM6

happy fragging
https://www.oldschoolhack.me
http://www.abload.de/thumb/snapshot0000zs0a.jpg
http://www.abload.de/thumb/dod_argentan00010pgp.jpg

Download OldSchoolHack DoDS BP RC2
Day of Defeat

Fri 22. Jan 2010, 18:57

by xst Go to last post
4 2104
icon

Go to first new post Mikrowelle vs. Weinkarton Posted on: Fri 22. Jan 2010, 01:37

KN4CK3R

preview Preview

Go To Post



greetz KN4CK3R
Fun

Fri 22. Jan 2010, 18:38

by Nordeern Remix Go to last post
3 444
icon

Go to first new post [Release] HaZaN Chams Hook Posted on: Fri 22. Jan 2010, 00:59

KN4CK3R

preview Preview
Warrock

Fri 22. Jan 2010, 17:47

by E D E L H u R E Go to last post
3 1075
icon

Go to first new post [C++][CoD6] IsReloading Posted on: Fri 22. Jan 2010, 00:49

KN4CK3R

preview Preview

Go To Post

benutzt das, damit ihr beim Nachladen nicht mit eurem Aimbot auf Gegner zielt:

TEXT Code:
  1. class cCG
  2. {
  3. public:
  4. int ClientNumber;
  5. char unknown48[0x48];
  6. int Health;
  7. char unknown9C[0x9C];
  8. int IsReloading;
  9. };
  10.  
  11. ...
  12. if(cg->IsReloading)
  13. donotaim();

greetz KN4CK3R
VB, C/C++, Delphi, etc

Fri 22. Jan 2010, 01:10

by Dovahkiin Go to last post
1 635
icon

Go to first new post [Release] Kips No Menu Posted on: Fri 22. Jan 2010, 00:55

KN4CK3R

preview Preview

Go To Post

extra ammo
FastAll
Superjump Hotkey control
No Fall Damage
nobounds
Speed on NUMPAD0
Speed off NUMPAD1
no water
norecoil
no spread
Scope Hotkey Right mouse button
SuperMAster
5thSlot
Virtual dig hotkey END
Speed roll on numpad2
speed roll off numpad3
http://www.abload.de/thumb/xo0ieclqbe.jpg

Download Kips No Menu
Warrock

Fri 22. Jan 2010, 00:55

by KN4CK3R Go to last post
0 734
icon

Go to first new post Bitte meine Dienste an! (Multi-page thread 1 2) Posted on: Tue 19. Jan 2010, 21:55

trix0matrix9

preview Preview

Go To Post

wieso brauchst du ein Tutorial für PHP/HTML wenn du Webseiten erstellen kannst?

greetz KN4CK3R
Laberecke

Thu 21. Jan 2010, 20:07

by KN4CK3R Go to last post
26 1176
icon

Go to first new post Bitte meine Dienste an! (Multi-page thread 1 2) Posted on: Tue 19. Jan 2010, 21:55

trix0matrix9

preview Preview

Go To Post

was ist PHP deiner Meinung nach denn außer eine Programmiersprache?!

greetz KN4CK3R
Laberecke

Thu 21. Jan 2010, 20:07

by KN4CK3R Go to last post
26 1176
icon

Go to first new post Bitte meine Dienste an! (Multi-page thread 1 2) Posted on: Tue 19. Jan 2010, 21:55

trix0matrix9

preview Preview

Go To Post

dann ist C also eine clientseitig interpretierte Skriptsprache?

greetz KN4CK3R
Laberecke

Thu 21. Jan 2010, 20:07

by KN4CK3R Go to last post
26 1176
icon

Go to first new post Bitte meine Dienste an! (Multi-page thread 1 2) Posted on: Tue 19. Jan 2010, 21:55

trix0matrix9

preview Preview

Go To Post

gleich rollt ein Kopf...

greetz KN4CK3R
Laberecke

Thu 21. Jan 2010, 20:07

by KN4CK3R Go to last post
26 1176
icon

Go to first new post Bitte meine Dienste an! (Multi-page thread 1 2) Posted on: Tue 19. Jan 2010, 21:55

trix0matrix9

preview Preview

Go To Post

ich bin auch vergeben, sry

greetz KN4CK3R
Laberecke

Thu 21. Jan 2010, 20:07

by KN4CK3R Go to last post
26 1176
icon

Go to first new post Bitte meine Dienste an! (Multi-page thread 1 2) Posted on: Tue 19. Jan 2010, 21:55

trix0matrix9

preview Preview

Go To Post

danke roOx, leider kann ich deine Gefühle nicht erwiedern, bin glücklich vergeben

ich close hier ma wegen ot

greetz KN4CK3R
Laberecke

Thu 21. Jan 2010, 20:07

by KN4CK3R Go to last post
26 1176
icon

Go to first new post [Release] GhostRacerX Mega PuB Posted on: Thu 21. Jan 2010, 18:53

KN4CK3R

preview Preview

Go To Post

for features, look at the screenshots
http://www.abload.de/thumb/n4ts2owyc7.png
http://www.abload.de/thumb/25gt951pyq8.png

Download GhostRacerX Mega PuB
Warrock

Thu 21. Jan 2010, 18:53

by KN4CK3R Go to last post
0 453
icon

Go to first new post 100+ Kill Glitch Posted on: Wed 20. Jan 2010, 01:43

KN4CK3R

preview Preview

Go To Post

Quote
Original von XIII
There is currently a "bug" in MW2 (I put it in quotes because it isn't so much a bug as it is overpowered weapons) that will allow you, if done right, to get 50+ kill streaks easily.

In order to do it, you must use the following:

Main gun: Any assault rifle
Attachment: Grenade launcher

Secondary: One Man Army Pro

Grenade: Claymore

Special: Your choice

Perk One: One Man Army Pro

Perk Two: Danger Close Pro

Perk Three: Your Choice

Death Streak: Your Choice (won't be needed, if done right)

Killstreaks:

5- Predator Missle

7- Harrier

11- Chopper Gunner

What you do:

Start up with your assault rifle and get the noobtube out. Aim and fire at the enemy. Repeat. Place your claymores down. Go back to safety and use one man army back to the class you were (your grenades will reload). Repeat. When you get the predator, it will do twice as much damage (thanks to danger close pro). You will most likely get your harrier now. Use it and it will easily get to 11 kills (thanks to danger close pro). Now use chopper gunner and watch how quickly you can kill everything. The bullets are twice as strong. Now either continue with your killing or kill yourself and start over.

By doing this, you can get 100+ kills with minimal deaths.

Video:
http://www.break.com/game-trailers/game/modern-warfare-2/modern-warfare-2-custom-kit-exploit---100-kills.html
Call of Duty 6: Modern Warfare 2

Thu 21. Jan 2010, 17:17

by Ardok Go to last post
4 898
icon

Go to first new post [Release] Texture Hack V4 Posted on: Thu 21. Jan 2010, 16:03

KN4CK3R

preview Preview

Go To Post

Important: Run as Administrator!
This is so the XZip.dll is registered and your custom colours can be applied.

Testing this. So make backups of your original iw_00-07.iwd files and make sure you have anybody elses textures removes first.

I have tested it on Windows 7 64 bit, Windows Vista 32 bit, and Windows XP 32 bit. They worked fine if I ran the application as Administrator.

Modern Warfare 2 directory is "CProgram Files (x86)\Steam\steamapps\common\call of duty modern warfare 2" as default, which is used only by 64 bit systems.
Change the steam directory to "CProgram Files\Steam\steamapps\common\call of duty modern warfare 2" if your on a 32 bit system, providing you installed to the default directory.

How to use:

  1. Choose your options.
  2. Press 'Patch' - This is only needed the one time.
  3. Press 'Patch: Game Closed'
  4. Run the game.
  5. Press 'Patch: Game Open'
  6. Join a server.


Repeat steps 3-6.

If you want to remove everything, then press Unpatch.
http://www.abload.de/thumb/th-v472vg.jpg

Download Texture Hack V4
Call of Duty 6: Modern Warfare 2

Thu 21. Jan 2010, 17:01

by E D E L H u R E Go to last post
2 3705