How to reverse a DLL into C++ code?

后端 未结 3 1085
青春惊慌失措
青春惊慌失措 2021-02-09 09:36

I know it\'s impossible to reverse a dll into a c++ code so I would like to collect as much as possible details from it. It\'s not my dll, so I don\'t have the source code of co

3条回答
  •  一向
    一向 (楼主)
    2021-02-09 10:16

    You need a PE file viewer. This will tell you the exports from the DLL and you can get the data in the .text section to see the machine code.

提交回复
热议问题