문제

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