Analizing MIPS binaries: is there a Python library for parsing binary data?

前端 未结 6 1529
小鲜肉
小鲜肉 2020-12-28 21:00

I\'m working on a utility which needs to resolve hex addresses to a symbolic function name and source code line number within a binary. The utility will run on Linux on x86,

6条回答
  •  灰色年华
    2020-12-28 21:24

    You should give Construct a try. It is very useful to parse binary data into python objects.

    There is even an example for the ELF32 file format.

提交回复
热议问题