How to Modify Import Address Table for Run time Loaded DLL

后端 未结 1 944
野性不改
野性不改 2021-01-05 12:51

I want to hook functions that are called from a loaded DLL on Run time, i used the class CAPIHook from the book \"Windows Via C/C++\" (the DLL Injecting done by Install Syst

相关标签:
1条回答
  • 2021-01-05 13:25

    I've done this before. What you want is EAT hooking instead of IAT. Also, hook the ::LoadLibrary API itself so you know when the DLL is loaded, and hook the requested api from the DLL after it is loaded.

    There are some examples on the Internet on how to do this. Here is one I found just now: http://board.cheat-project.com/showthread.php?t=10633

    0 讨论(0)
提交回复
热议问题