This was causing a problem where resources with strings would accumulate the strings of previous resources in the directory. For example, here is the output of test.py on 3f0961b7942f12bc96848509c04da2b6: Resources: (4) [+] MD5: (191649) 33a6345b919c7c733da9d33ee4ac64eb Type string: BINARY Name string: 1.165.3106.0_TO_1.165.3138.0_MPASDLTA.VDM._P Lang: 0x0 Codepage: 0x4e4 RVA: 0x51dc Size: 0x2eca1 First 10 bytes: 0x4d50535091ec0200c263 [+] MD5: (293587) e4c9b9aa65e0b236cb180fa489502700 Type string: BINARY Name string: 1.165.3106.0_TO_1.165.3138.0_MPASDLTA.VDM._P1.165.3106.0_TO_1.165.3138.0_MPAVDLTA.VDM._P The second resource has the first resources name string in it.
pe-parse
pe-parse is a principled, lightweight parser for windows portable executable files. 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.
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
- Iterating over resources
- Reading bytes from specified virtual addresses
- Retrieving the program entry point
The interface is defined in parser-library/parse.h
. 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.
Building
pe-parse is built using cmake and depends on boost.
- Install dependencies:
- Debian/Ubuntu:
sudo apt-get install boost-dev cmake
- RedHat/Fedora:
sudo yum install boost-devel cmake
- OSX:
brew install boost cmake
cmake .
make
Authors
pe-parse was designed and implemented by Andrew Ruef (andrew@trailofbits.com), with significant contributions from Wesley Shields.