Parsing plain Win32 PE File (Exe/DLL) in .NET

后端 未结 3 972
我在风中等你
我在风中等你 2021-01-02 09:50

I need to parse plain Win32 DLL/Exe and get all imports and exports from it to show on console or GUI (i.e. Win Forms). Is it possible to parse Win32 DLL/Exe in C#.NET by re

3条回答
  •  没有蜡笔的小新
    2021-01-02 10:15

    Have a look at the PeNet library for .Net. It can parse and list you all Exports/Imports of a DLL. You can get it from github or directly as a NuGet package. https://github.com/secana/PeNet https://www.nuget.org/packages/PeNet/

    (disclaimer: I'm the author of the project)

提交回复
热议问题