|
Thread |
Forum |
Last Post |
Posts |
Views |
 |
[C++]gehookte Funktion nochmal hooken
Posted on: Mon 25. Jan 2010, 17:47
KN4CK3R
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: void *SafeDetourFunc(BYTE *src, const BYTE *dst, const int len) { BYTE *jmp; DWORD dwback; DWORD jumpto, newjump; VirtualProtect(src,len,PAGE_READWRITE,&dwback); if(src[0] == 0xE9) { jmp = (BYTE*)malloc(10); jumpto = (*(DWORD*)(src+1))+((DWORD)src)+5; newjump = (jumpto-(DWORD)(jmp+5)); jmp[0] = 0xE9; *(DWORD*)(jmp+1) = newjump; jmp += 5; jmp[0] = 0xE9; *(DWORD*)(jmp+1) = (DWORD)(src-jmp); } else { jmp = (BYTE*)malloc(5+len); memcpy(jmp,src,len); jmp += len; jmp[0] = 0xE9; *(DWORD*)(jmp+1) = (DWORD)(src+len-jmp)-5; } src[0] = 0xE9; *(DWORD*)(src+1) = (DWORD)(dst - src) - 5; for(int i = 5; i < len; i++) src[i] = 0x90; VirtualProtect(src,len,dwback,&dwback); return (jmp-len); }
Viel Spaß mit eurem MausGUI. greetz KN4CK3R
|
VB, C/C++, Delphi, etc |
Mon 25. Jan 2010, 20:24
by Dovahkiin
|
3 |
933 |
 |
[C++]gehookte Funktion nochmal hooken
Posted on: Mon 25. Jan 2010, 17:47
KN4CK3R
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
|
3 |
933 |
 |
OSH userbars
Posted on: Fri 22. Jan 2010, 15:50
Dovahkiin
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
|
17 |
696 |
 |
OSH userbars
Posted on: Fri 22. Jan 2010, 15:50
Dovahkiin
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
|
17 |
696 |
 |
[Release] OldSchoolHack BP CoD6 RC4
Posted on: Fri 22. Jan 2010, 23:33
KN4CK3R
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 Download OldSchoolHack BP CoD6 RC4
|
Call of Duty 6: Modern Warfare 2 |
Sat 23. Jan 2010, 17:00
by fr0sti
|
1 |
2995 |
 |
Model Hack
( 1 2)
Posted on: Mon 18. Jan 2010, 19:37
kakashi
Preview
|
Counter-Strike: Source |
Sat 23. Jan 2010, 15:42
by Dovahkiin
|
35 |
1911 |
 |
[Release] OldSchoolHack DoDS BP RC2
Posted on: Sun 10. Jan 2010, 11:19
KN4CK3R
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  Download OldSchoolHack DoDS BP RC2
|
Day of Defeat |
Fri 22. Jan 2010, 18:57
by xst
|
4 |
2104 |
 |
Mikrowelle vs. Weinkarton
Posted on: Fri 22. Jan 2010, 01:37
KN4CK3R
Preview
|
Fun |
Fri 22. Jan 2010, 18:38
by Nordeern Remix
|
3 |
444 |
 |
[Release] HaZaN Chams Hook
Posted on: Fri 22. Jan 2010, 00:59
KN4CK3R
Preview
|
Warrock |
Fri 22. Jan 2010, 17:47
by E D E L H u R E
|
3 |
1075 |
 |
[C++][CoD6] IsReloading
Posted on: Fri 22. Jan 2010, 00:49
KN4CK3R
Preview
Go To Post
benutzt das, damit ihr beim Nachladen nicht mit eurem Aimbot auf Gegner zielt: TEXT Code: class cCG { public: int ClientNumber; char unknown48[0x48]; int Health; char unknown9C[0x9C]; int IsReloading; }; ... if(cg->IsReloading) donotaim();
greetz KN4CK3R
|
VB, C/C++, Delphi, etc |
Fri 22. Jan 2010, 01:10
by Dovahkiin
|
1 |
635 |
 |
[Release] Kips No Menu
Posted on: Fri 22. Jan 2010, 00:55
KN4CK3R
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 Download Kips No Menu
|
Warrock |
Fri 22. Jan 2010, 00:55
by KN4CK3R
|
0 |
734 |
 |
Bitte meine Dienste an!
( 1 2)
Posted on: Tue 19. Jan 2010, 21:55
trix0matrix9
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
|
26 |
1176 |
 |
Bitte meine Dienste an!
( 1 2)
Posted on: Tue 19. Jan 2010, 21:55
trix0matrix9
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
|
26 |
1176 |
 |
Bitte meine Dienste an!
( 1 2)
Posted on: Tue 19. Jan 2010, 21:55
trix0matrix9
Preview
Go To Post
dann ist C also eine clientseitig interpretierte Skriptsprache? greetz KN4CK3R
|
Laberecke |
Thu 21. Jan 2010, 20:07
by KN4CK3R
|
26 |
1176 |
 |
Bitte meine Dienste an!
( 1 2)
Posted on: Tue 19. Jan 2010, 21:55
trix0matrix9
Preview
|
Laberecke |
Thu 21. Jan 2010, 20:07
by KN4CK3R
|
26 |
1176 |
 |
Bitte meine Dienste an!
( 1 2)
Posted on: Tue 19. Jan 2010, 21:55
trix0matrix9
Preview
Go To Post
ich bin auch vergeben, sry greetz KN4CK3R
|
Laberecke |
Thu 21. Jan 2010, 20:07
by KN4CK3R
|
26 |
1176 |
 |
Bitte meine Dienste an!
( 1 2)
Posted on: Tue 19. Jan 2010, 21:55
trix0matrix9
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
|
26 |
1176 |
 |
[Release] GhostRacerX Mega PuB
Posted on: Thu 21. Jan 2010, 18:53
KN4CK3R
Preview
|
Warrock |
Thu 21. Jan 2010, 18:53
by KN4CK3R
|
0 |
453 |
 |
100+ Kill Glitch
Posted on: Wed 20. Jan 2010, 01:43
KN4CK3R
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
|
4 |
898 |
 |
[Release] Texture Hack V4
Posted on: Thu 21. Jan 2010, 16:03
KN4CK3R
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. 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
|
2 |
3705 |