about hooking does anyone know a good tutorial about hooking functions
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
It should be about IAT hook and api hooking well explained i mean noob friendly. I wanna hook functions but i dont know how hooking works so need a good tutorial ok thnx.
For IAT patching I advice you to read the codeproject article of Mr. A.Bassov "Process-wide API spying - an ultimate hack" wich contains a deep explanation of IAT hooking. Concerning direct API hooking wich is far more efficient comparing to the IAT technique you can find in codeproject some good articles or look to the well known microsoft project with fully source code : "detours"