Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以将 ELF-ARM 文件的整个二进制结构转储为可读格式。想法是分析每个部分并将其保存回二进制文件。
有几种工具可以检查 elf 文件的内部结构,最常见的是 readelf、objdump 和 elfsh(来自 ERESI 框架)。这取决于您对二进制文件的哪个部分感兴趣,但是,例如,您可以使用以下命令转储节头表:
arm-elf-objdump -h elffile
如果要将 elf 文件中的某个部分复制到原始二进制文件中,请使用 objcopy:
arm-elf-objcopy -j .data -O binary elffile binfile