The problem with connecting NT DLL files!

What is the best tool to track NT API.

+3
source share
3 answers

If you are in the desired process, you can redirect the IAT (import address table) for the DLL that you want to control. If you are not already running executable code, you will also need to find a way to load the code into the desired process.

+1
source

Microsoft Detours can help you do this, and it's free.

+1
source

I don't know if this is on the beam, but try this for Win32. For the Native API, I think that only about 20% of this document is documented.

0
source

Source: https://habr.com/ru/post/1754977/


All Articles