How to intercept dll method calls?

后端 未结 4 1446
盖世英雄少女心
盖世英雄少女心 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条回答
  •  -上瘾入骨i
    2020-12-09 05:14

    Provided that you know all the DLL functions in advance, one technique is to write your own wrapper DLL that will forward all function calls to the real DLL. This DLL doesn't have to be written in C/C++. All you need to do is to match the function calling convention of the original DLL.

提交回复
热议问题