Awesome
ELF Esteem
Overview
The goal of this library is to manipulate various containers of executable code. ELF, PE, COFF and Mach-O files are fully supported. It includes a partial support of Minidump and RPRC files, and a non-working implementation of Java classes.
It aims at being self-contained and portable: it is pure python, compatible from python 2.3 upwards (including python 3.x).
Parsing with ELF Esteem
binary.py can be used to read a binary of any known format and display its main characteristics.
readelf.py outputs the same as binutils' readelf, using ELF Esteem.
otool.py outputs the same as MacOSX otool and dyldinfo, using ELF Esteem.
readpe.py analyses the content of a PE or COFF file, including a hierarchical display of the layout of the file.
File manipulation with ELF Esteem
Most of the internal representation of the file parsed by ELF Esteem is based on cstruct.py which is a generic framework to manipulate binary data structures.
The file is fully loaded using one of the classes ELF
, PE
, COFF
, MACHO
, RPRC
, or Minidump
. This class is the root of a tree of subclasses (e.g. file header, list of sections, ...) and each subtree can be modified. The method pack()
reconstructs a binary.
The philosophy behind ELF Esteem is that if the input file is valid, and no modification is made to the internal representation, then pack()
will recover the input.
When modifications are made, then (depending on the details of the file format) some values are automatically recomputed (e.g. fields containing lengths, checksums).
More doc soon.