Question

I love using the PeFile library for Python to parse PE files. Is there a similar library for parsing ELF?

Was it helpful?

Solution

You should take a look at pyelftools

It supports ELF and DWARF binary formats. It is a project which is in active development too.

OTHER TIPS

This is pretty old, but it still came to the top of Google when I searched...

A good library is lief - https://lief.quarkslab.com

It has support for elf, pe and macho

There's also pylibelf: https://github.com/crackinglandia/pylibelf

It only supports the ELF format though, and it's read-only. But it's in active development, and the write part is expected soon at the time I write this.

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