exe-rs

exe-rs is a Portable Executable (PE) parsing library tested on multiple kinds of malformed PE executables, including the Corkami corpus and various forms of malware! It's a library built with creation in mind as well as parsing, attempting to make tasks related to PE files as smooth and flawless as possible.

You can read the documentation here, and see various use examples in the test file.

Changelog

0.5.0

This update makes major code-breaking changes! Notably, the buffer module has been moved into its own library called pkbuffer. This caused the whole library to need to be refactored, and ultimately changed the way the structures interact with the data! As a result, though, PE structure objects can retain buffer functionality without having to rely on interacting with a member of a struct (i.e., the pattern of "pefile.pe.buffer" is no longer necessary). The interface for buffer objects changed, though-- instead of requiring an explicit Offset object, they now take a usize as an offset. To make things simpler, RVA and Offset can now be explicitly converted into usize with the Into trait.

This refactor has caused the main PE module to become a trait! This means you can now flexibly create your own PE object by implementing this trait as well as the Buffer trait on an object.

Features

Bugfixes

0.4.6

Features

0.4.5

Features

0.4.4

Features

0.4.3

Features

0.4.2

Features

0.4.1

Features

0.4

Features

0.3.1

Features

0.3

Features

0.2

Features