OldSchoolHack

Register / Login English

User Search: InUrFace1337

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

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

rawc0de

preview Preview

Go To Post

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

Sun 30. Aug 2015, 14:18

by zockerhd123 Go to last post
29 13319
icon

Go to first new post [Release] R3CHEATS - COD GHOST (Multi-page thread 1 2) Posted on: Mon 2. Dec 2013, 22:24

tark

preview Preview

Go To Post

juter hakk isses
Call of Duty: Ghosts

Fri 31. Jan 2014, 18:28

by FALCO_ Go to last post
34 2759
icon

Go to first new post R3CHEATS - COD GHOST Posted on: Tue 3. Dec 2013, 17:10

bloody86_deleted

preview Preview

Go To Post

iw6mp_ship.exe oder so
Call of Duty: Ghosts

Sun 8. Dec 2013, 09:55

by nerana Go to last post
8 541
icon

Go to first new post [Tutorial] Copy & Paste Hacks erkennen Posted on: Sun 23. Jun 2013, 18:56

Dr_Pepper

preview Preview

Go To Post

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

Tue 6. Aug 2013, 20:54

by InUrFace1337 Go to last post
5 1185
icon

Go to first new post [Coding] VMTHook class x86 und AMD64 kompatibel Posted on: Thu 27. Jun 2013, 21:08

InUrFace1337

preview Preview

Go To Post

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

Thu 27. Jun 2013, 21:10

by InUrFace1337 Go to last post
2 378
icon

Go to first new post [Coding] VMTHook class x86 und AMD64 kompatibel Posted on: Thu 27. Jun 2013, 21:08

InUrFace1337

preview Preview

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

Thu 27. Jun 2013, 21:10

by InUrFace1337 Go to last post
2 378
icon

Go to first new post [Release] Tettenhook 1.0.1 Public Posted on: Wed 20. Mar 2013, 09:06

SilverFire

preview Preview

Go To Post

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

Tue 26. Mar 2013, 23:00

by Silly Go to last post
11 1344
icon

Go to first new post CoD BO2 ohne steam zocken? (Multi-page thread 1 2) Posted on: Sat 2. Mar 2013, 15:11

r4t5h0t_h4x

preview Preview

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

Thu 7. Mar 2013, 15:01

by r4t5h0t_h4x Go to last post
35 1891
icon

Go to first new post Battlefield 3 Private Cheat Posted on: Tue 19. Feb 2013, 19:09

JokerJj

preview Preview

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

Fri 22. Feb 2013, 11:15

by InUrFace1337 Go to last post
17 1388
icon

Go to first new post Battlefield 3 Private Cheat Posted on: Tue 19. Feb 2013, 19:09

JokerJj

preview Preview

Go To Post

add mich mal skype
Battlefield 3

Fri 22. Feb 2013, 11:15

by InUrFace1337 Go to last post
17 1388
icon

Go to first new post Battlefield 3 Private Cheat Posted on: Tue 19. Feb 2013, 19:09

JokerJj

preview Preview

Go To Post

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

Fri 22. Feb 2013, 11:15

by InUrFace1337 Go to last post
17 1388
icon

Go to first new post Battlefield 3 Private Cheat Posted on: Tue 19. Feb 2013, 19:09

JokerJj

preview Preview

Go To Post

danke silver <3 (No Homo!)
Battlefield 3

Fri 22. Feb 2013, 11:15

by InUrFace1337 Go to last post
17 1388
icon

Go to first new post Battlefield 3 Private Cheat Posted on: Tue 19. Feb 2013, 19:09

JokerJj

preview Preview

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

Fri 22. Feb 2013, 11:15

by InUrFace1337 Go to last post
17 1388
icon

Go to first new post MW3 legit hack(human aim) ? Posted on: Sat 16. Feb 2013, 20:57

r4t5h0t_h4x

preview Preview

Go To Post

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

Sun 17. Feb 2013, 17:39

by r4t5h0t_h4x Go to last post
7 336
icon

Go to first new post Hack selber Schreiben :) Posted on: Sun 17. Feb 2013, 11:23

CoderX33

preview Preview

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

Sun 17. Feb 2013, 17:34

by r4t5h0t_h4x Go to last post
16 881
icon

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

SilverFire

preview Preview

Go To Post

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

Thu 7. Feb 2013, 13:54

by SilverFire Go to last post
35 4454
icon

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

Mayors

preview Preview

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

Wed 30. Jan 2013, 11:46

by InUrFace1337 Go to last post
23 2393
icon

Go to first new post HookingTutorial Theorie&Anwendung Posted on: Sat 31. Dec 2011, 15:11

SilverFire

preview Preview

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

Tue 22. Jan 2013, 13:27

by SilverFire Go to last post
12 3624
icon

Go to first new post BF2-Speedhack Undetected + Anleitung Posted on: Mon 21. Jan 2013, 05:21

Ach

preview Preview

Go To Post

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

Mon 21. Jan 2013, 20:35

by Ach Go to last post
5 630
icon

Go to first new post Namechanger Hack? Posted on: Sat 5. Jan 2013, 00:14

patch0

preview Preview

Go To Post

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

Sun 6. Jan 2013, 14:49

by InUrFace1337 Go to last post
9 323