How to intercept dll method calls?

后端 未结 4 1448
盖世英雄少女心
盖世英雄少女心 2020-12-09 05:12

How to intercept dll method calls?

  • What are the techniques available for it?
  • Can it be done only in C/C++?
  • How to intercept method calls from
4条回答
  •  独厮守ぢ
    2020-12-09 05:16

    See Microsoft Detours for a library with a C/C++ API. It's a bit non-trivial to inject it in all other programs without triggering virusscanners/malware detectors. But your own process is fair game.

提交回复
热议问题