2013-11-22 19:25:24 -05:00
pe-parse
2020-03-17 13:38:56 -04:00
========
2014-08-08 17:44:43 -04:00
2019-12-23 09:28:47 -06:00
[](https://github.com/trailofbits/pe-parse/actions?query=workflow%3ACI)
2020-04-06 09:58:13 -04:00
[](https://lgtm.com/projects/g/trailofbits/pe-parse/alerts/)
2014-08-08 17:44:43 -04:00
2020-04-24 13:48:46 -04:00
pe-parse is a principled, lightweight parser for Windows portable executable files.
2020-03-17 13:38:56 -04:00
It was created to assist in compiled program analysis, potentially of programs of unknown origins.
This means that it should be resistant to malformed or maliciously crafted PE files, and it should
support questions that analysis software would ask of an executable program container.
For example, listing relocations, describing imports and exports, and supporting byte reads from
virtual addresses as well as file offsets.
2013-11-22 19:19:18 -05:00
pe-parse supports these use cases via a minimal API that provides methods for
* Opening and closing a PE file
* Iterating over the imported functions
* Iterating over the relocations
* Iterating over the exported functions
* Iterating over sections
2013-12-24 12:41:59 -05:00
* Iterating over resources
2013-11-22 19:19:18 -05:00
* Reading bytes from specified virtual addresses
* Retrieving the program entry point
2020-03-17 13:38:56 -04:00
The interface is defined in `parser-library/parse.h` .
2013-11-22 19:19:18 -05:00
2020-03-17 13:38:56 -04:00
The program in `dump-prog/dump.cpp` is an example of using the parser-library API to dump
information about a PE file.
Internally, the parser-library uses a bounded buffer abstraction to access information stored in
the PE file. This should help in constructing a sane parser that allows for detection of the use
of bogus values in the PE that would result in out of bounds accesses of the input buffer.
Once data is read from the file it is sanitized and placed in C++ STL containers of internal types.
pe-parse includes Python bindings via `pepy` , which can be installed via `pip` :
```bash
$ pip3 install pepy
```
More information about `pepy` can be found in its [README ](./pepy/README.md ).
## Dependencies
2013-11-22 19:28:04 -05:00
2018-03-26 14:30:34 +02:00
### CMake
2017-03-11 19:25:58 -05:00
* Debian/Ubuntu: `sudo apt-get install cmake`
* RedHat/Fedora: `sudo yum install cmake`
* OSX: `brew install cmake`
2018-03-26 14:30:34 +02:00
* Windows: Download the installer from the [CMake page ](https://cmake.org/download/ )
2020-03-17 13:38:56 -04:00
## Building
2018-03-26 14:30:34 +02:00
### Generic instructions
2020-04-24 13:48:46 -04:00
2018-03-26 14:30:34 +02:00
```
git clone https://github.com/trailofbits/pe-parse.git
cd pe-parse
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
2020-03-17 13:38:56 -04:00
cmake --build .
2018-03-26 14:30:34 +02:00
# optional
2020-03-17 13:38:56 -04:00
cmake --build . --target install
2018-03-26 14:30:34 +02:00
```
2020-04-24 13:48:46 -04:00
### Windows-specific
2018-03-26 14:30:34 +02:00
2020-04-24 13:48:46 -04:00
VS 2017 and VS 2019 are supported.
2018-03-26 14:30:34 +02:00
```
# Compile 64-bit binaries with Visual Studio 2017
2020-03-17 13:38:56 -04:00
cmake -G "Visual Studio 15 2017 Win64" ..
2018-03-26 14:30:34 +02:00
2020-04-24 13:48:46 -04:00
# Or, with VS 2019, use the -A flag for architecture
cmake -G "Visual Studio 16 2019" -A Win64 ..
2020-03-17 13:38:56 -04:00
2020-04-24 13:48:46 -04:00
# Pass the build type at build time
cmake --build . --config Release
```
2020-03-17 13:38:56 -04:00
## Using the library
2019-09-16 17:59:24 -07:00
2017-11-25 22:01:53 +01:00
Once the library is installed, linking to it is easy! Add the following lines in your CMake project:
```
2020-04-24 13:48:46 -04:00
find_package(pe-parse REQUIRED)
2017-11-25 22:01:53 +01:00
2020-04-24 13:48:46 -04:00
target_link_libraries(your_target_name PRIVATE pe-parse::pe-parser-library)
2017-11-25 22:01:53 +01:00
```
2020-04-24 13:48:46 -04:00
You can see a full example in the [examples/peaddrconv ](examples/peaddrconv ) folder.
2017-11-25 22:01:53 +01:00
2020-03-17 13:38:56 -04:00
## Authors
pe-parse was designed and implemented by Andrew Ruef (andrew@trailofbits .com), with significant
contributions from [Wesley Shields ](https://github.com/wxsBSD ).