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

有帮助吗?

解决方案

You should take a look at pyelftools

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

其他提示

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.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top