OldSchoolHack

Registrieren / Anmelden Deutsch

Benutzersuche: InUrFace1337

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

Go to first new post [Release] Tettenhook 1.0.6 Public (Multi-page thread 1 2) Erstellt am: Do 18. Apr 2013, 16:02

rawc0de

preview Vorschau

Go To Post

Dieser nospread ist der grösste mist uff erden -.-
Counter-Strike: Source

So 30. Aug 2015, 14:18

von zockerhd123 Go to last post
29 13303
icon

Go to first new post [Release] R3CHEATS - COD GHOST (Multi-page thread 1 2) Erstellt am: Mo 2. Dez 2013, 22:24

tark

preview Vorschau

Go To Post

juter hakk isses
Call of Duty: Ghosts

Fr 31. Jan 2014, 18:28

von FALCO_ Go to last post
34 2758
icon

Go to first new post R3CHEATS - COD GHOST Erstellt am: Di 3. Dez 2013, 17:10

bloody86_deleted

preview Vorschau

Go To Post

iw6mp_ship.exe oder so
Call of Duty: Ghosts

So 8. Dez 2013, 09:55

von nerana Go to last post
8 541
icon

Go to first new post [Tutorial] Copy & Paste Hacks erkennen Erstellt am: So 23. Jun 2013, 18:56

Dr_Pepper

preview Vorschau

Go To Post

sogar der x22 hat n copypasted string in seinem hack, findest auf royalhack XDDD
Tutorials

Di 6. Aug 2013, 20:54

von InUrFace1337 Go to last post
5 1183
icon

Go to first new post [Coding] VMTHook class x86 und AMD64 kompatibel Erstellt am: Do 27. Jun 2013, 21:08

InUrFace1337

preview Vorschau

Go To Post

kkkk sori
10chars
VB, C/C++, Delphi, etc

Do 27. Jun 2013, 21:10

von InUrFace1337 Go to last post
2 377
icon

Go to first new post [Coding] VMTHook class x86 und AMD64 kompatibel Erstellt am: Do 27. Jun 2013, 21:08

InUrFace1337

preview Vorschau

Go To Post

TEXT Code:
  1. #ifndef __VMTHOOK_H__
  2. #define __VMTHOOK_H__
  3.  
  4. #include <Windows.h>
  5.  
  6. class CVMTHook
  7. {
  8. public:
  9. CVMTHook(void* instance);
  10. ~CVMTHook();
  11. void* hookFunction(size_t iIndex, void* pfnHook);
  12. void* getOriginalFunction(size_t iIndex);
  13. void setHookEnabled(bool bEnabled=true);
  14. protected:
  15. size_t m_iNumIndices;
  16. void** m_pOriginalVTable;
  17. void** m_pNewVTable;
  18. void*** m_pInstance;
  19. };
  20.  
  21. #endif //__VMTHOOK_H__

TEXT Code:
  1. #include "VMTHook.h"
  2.  
  3. CVMTHook::CVMTHook(void* instance)
  4. {
  5. HANDLE hProcessHeap;
  6.  
  7. if(instance)
  8. {
  9. m_pInstance = (void***) instance;
  10. m_pOriginalVTable = *m_pInstance;
  11.  
  12. //Count number of Pointers in the table
  13.  
  14. m_iNumIndices = 0;
  15.  
  16. //TODO: check if pointer into .text section
  17. while(m_pOriginalVTable[m_iNumIndices])
  18. {
  19. m_iNumIndices++;
  20. }
  21.  
  22.  
  23. //Allocate memory on the heap for our own copy of the table
  24.  
  25. hProcessHeap = GetProcessHeap();
  26.  
  27. if(hProcessHeap)
  28. {
  29. m_pNewVTable = (void**) HeapAlloc(hProcessHeap, 0, sizeof(void*) * m_iNumIndices);
  30. if(m_pNewVTable)
  31. {
  32. memcpy(m_pNewVTable, m_pOriginalVTable, sizeof(void*) * m_iNumIndices);
  33. setHookEnabled();
  34. }
  35. }
  36. }
  37. }
  38.  
  39. CVMTHook::~CVMTHook()
  40. {
  41. HANDLE hProcessHeap;
  42.  
  43. //Reset the VTable pointer
  44. if(*m_pInstance == m_pNewVTable)
  45. {
  46. *m_pInstance = m_pOriginalVTable;
  47. }
  48.  
  49. //Free our copy of the VTable
  50. hProcessHeap = GetProcessHeap();
  51. if(hProcessHeap)
  52. {
  53.  
  54. HeapFree(hProcessHeap, 0, m_pNewVTable);
  55. }
  56. }
  57.  
  58.  
  59. void* CVMTHook::getOriginalFunction(size_t iIndex)
  60. {
  61. return m_pOriginalVTable[iIndex];
  62. }
  63.  
  64. void* CVMTHook::hookFunction(size_t iIndex, void* pfnHook)
  65. {
  66. //Valid index?
  67. if(iIndex >= m_iNumIndices)
  68. return NULL;
  69.  
  70. //Write new pointer
  71. m_pNewVTable[iIndex]=pfnHook;
  72.  
  73. //And return pointer to original function
  74. return m_pOriginalVTable[iIndex];
  75. }
  76.  
  77. void CVMTHook::setHookEnabled(bool bEnabled)
  78. {
  79. if(bEnabled)
  80. {
  81. //Point to our copy of the VTable
  82. *m_pInstance=m_pNewVTable;
  83. }
  84. else
  85. {
  86. //Point to the original VTable
  87. *m_pInstance=m_pOriginalVTable;
  88. }
  89. }
  90.  

Credits: Inurface, myself and me kk
VB, C/C++, Delphi, etc

Do 27. Jun 2013, 21:10

von InUrFace1337 Go to last post
2 377
icon

Go to first new post [Release] Tettenhook 1.0.1 Public Erstellt am: Mi 20. Mär 2013, 09:06

SilverFire

preview Vorschau

Go To Post

Silver, hast du nach 3 jahren noch immer kein menu? xDDD
Counter-Strike: Source

Di 26. Mär 2013, 23:00

von Silly Go to last post
11 1340
icon

Go to first new post CoD BO2 ohne steam zocken? (Multi-page thread 1 2) Erstellt am: Sa 2. Mär 2013, 15:11

r4t5h0t_h4x

preview Vorschau

Go To Post

als gemeinsamkeit könnte man bringen, dass sich in beiden spielen die (meistens nicht erwachsenen) mitspieler recht schnell wütend werden wenn man cheatet. ich sehe da keinen grossen unterschied zwischen cod und bf, höchstens auf welche distanz du als nicht-cheater beim spawnen niedergeschossen wirst :/
ich persönlich bevorzuge cod, da man dort cheaten kann ohne angst vor bans zu haben
Call of Duty: Black Ops 2

Do 7. Mär 2013, 15:01

von r4t5h0t_h4x Go to last post
35 1884
icon

Go to first new post Battlefield 3 Private Cheat Erstellt am: Di 19. Feb 2013, 19:09

JokerJj

preview Vorschau

Go To Post

add mich mal auf skype: b45311337 wenn ich zeit habe, mach ich vlt was...
ich kann coden, einige member hier können das bestätigen, ausserdem habe ich mehrere pubhacks released
Battlefield 3

Fr 22. Feb 2013, 11:15

von InUrFace1337 Go to last post
17 1385
icon

Go to first new post Battlefield 3 Private Cheat Erstellt am: Di 19. Feb 2013, 19:09

JokerJj

preview Vorschau

Go To Post

add mich mal skype
Battlefield 3

Fr 22. Feb 2013, 11:15

von InUrFace1337 Go to last post
17 1385
icon

Go to first new post Battlefield 3 Private Cheat Erstellt am: Di 19. Feb 2013, 19:09

JokerJj

preview Vorschau

Go To Post

hab noch n awall update gemacht, damit diese funken nicht mehr nerven
Battlefield 3

Fr 22. Feb 2013, 11:15

von InUrFace1337 Go to last post
17 1385
icon

Go to first new post Battlefield 3 Private Cheat Erstellt am: Di 19. Feb 2013, 19:09

JokerJj

preview Vorschau

Go To Post

danke silver <3 (No Homo!)
Battlefield 3

Fr 22. Feb 2013, 11:15

von InUrFace1337 Go to last post
17 1385
icon

Go to first new post Battlefield 3 Private Cheat Erstellt am: Di 19. Feb 2013, 19:09

JokerJj

preview Vorschau

Go To Post

mit dieser einstellung wirst du wahrscheinlich keinen kompetenten coder finden
schreib doch mal nach was für einem cheat du suchst. ich hab schon n paar hacks für bf3 gecoded, auch einen speziell für die ESL (NoRecoil / NoSpread)
Battlefield 3

Fr 22. Feb 2013, 11:15

von InUrFace1337 Go to last post
17 1385
icon

Go to first new post MW3 legit hack(human aim) ? Erstellt am: Sa 16. Feb 2013, 20:57

r4t5h0t_h4x

preview Vorschau

Go To Post

komm ma irc, dann kriegst vlt was
Call of Duty: Modern Warfare 3

So 17. Feb 2013, 17:39

von r4t5h0t_h4x Go to last post
7 336
icon

Go to first new post Hack selber Schreiben :) Erstellt am: So 17. Feb 2013, 11:23

CoderX33

preview Vorschau

Go To Post

Florian könntest du mir zeigen wie du ESP gemacht hast? ich will auch coden lernen aber kann das irgendwie nicht...
Counter-Strike: Source

So 17. Feb 2013, 17:34

von r4t5h0t_h4x Go to last post
16 879
icon

Go to first new post [Release] [CS:S] AryanRadar 1.0.1 Beta (Multi-page thread 1 2) Erstellt am: Sa 3. Nov 2012, 00:47

SilverFire

preview Vorschau

Go To Post

gute arbeit, der silver kann ja coden
Counter-Strike: Source

Do 7. Feb 2013, 13:54

von SilverFire Go to last post
35 4432
icon

Go to first new post Bo2 Lag Switch Hack/Cheat (Multi-page thread 1 2) Erstellt am: Mi 23. Jan 2013, 16:28

Mayors

preview Vorschau

Go To Post

Das sollte ned so schwierig sein softwaremässig... solange du host der lobby bist kannste so ziemlich alles machen. Könntest einfach packets von gewissen ips delayen oder blocken
Call of Duty: Black Ops 2

Mi 30. Jan 2013, 11:46

von InUrFace1337 Go to last post
23 2384
icon

Go to first new post HookingTutorial Theorie&Anwendung Erstellt am: Sa 31. Dez 2011, 15:11

SilverFire

preview Vorschau

Go To Post

das erste semikolon kommt weil nix initialisiert wird...
*szMask sollte !=0 sein, der loop wird abbrechen sobald der Nullterminator des strings erreicht wird... nach dem 2. semikolon werden einfach die 3 werte jedesmal inkrementiert
Tutorials

Di 22. Jan 2013, 13:27

von SilverFire Go to last post
12 3621
icon

Go to first new post BF2-Speedhack Undetected + Anleitung Erstellt am: Mo 21. Jan 2013, 05:21

Ach

preview Vorschau

Go To Post

ist clean hab rasch in ida geladen.
der hack ist von mir, hier schon gepostet und detected...
Battlefield 2

Mo 21. Jan 2013, 20:35

von Ach Go to last post
5 626
icon

Go to first new post Namechanger Hack? Erstellt am: Sa 5. Jan 2013, 00:14

patch0

preview Vorschau

Go To Post

in css sind namechanger patched, kannst nur noch alle 20 sekunden deinen namen ändern...
Counter-Strike: Source

So 6. Jan 2013, 14:49

von InUrFace1337 Go to last post
9 322