Question

C/C++ has the set of predefined structures and constants corresponding to an exe-header and so on. Do exist some analogical standard namespaces, classes in C# special for analyzing of portable executable files? Or is it only a prerogative of unmanaged unsafe more native languages?

Was it helpful?

Solution

There exists an managed library called PeNet which is available as open source and as a NuGet package, too. You can access and change nearly all structures in the PE header with this library. PeNet GitHub

Disclaimer: I'm the main author of the library

OTHER TIPS

An interesting library which is published for a number of languages including c#:

https://formats.kaitai.io/microsoft_pe/csharp.html

It uses another Kaitai's class named "Kaitai Struct", which is another interesting and more general class for reading binary files.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top