根据作者@eli-bendersky 的说法,pyelftools 是一个用于解析和分析 ELF/DWARF 文件的模块,它没有直接修改它们的方法。我查看了模块源文件,也找不到任何编辑/保存的方法。
在介绍性帖子中,评论中作者承认 pyelftools 没有 API 级别的支持来做到这一点,但一些修补可以帮助实现你所需要的。
如果 pyelftools 不是硬依赖,这里有一个关于如何使用elffile执行相同操作的示例:
import elffile
eo = elffile.open(name="/bin/ls")
eo.fileHeader.shnum = 30
with open('./ls.bin', 'wb') as f: f.write(eo.pack())
使用 readelf,您可以验证更改是否已正确保存:
readelf -h ls.bin
ELF Header:
Magic: 7f 45 4c 46 01 01 01 00 00 00 00 00 00 00 00 00
Class: ELF32
Data: 2's complement, little endian
Version: 1 (current)
OS/ABI: UNIX - System V
ABI Version: 0
Type: EXEC (Executable file)
Machine: Intel 80386
Version: 0x1
Entry point address: 0x804be34
Start of program headers: 105068 (bytes into file)
Start of section headers: 103948 (bytes into file)
Flags: 0x0
Size of this header: 52 (bytes)
Size of program headers: 32 (bytes)
Number of program headers: 9
Size of section headers: 40 (bytes)
Number of section headers: 30
Section header string table index: 27
readelf: Error: Unable to read in 0x708 bytes of section headers
关于 elffile 的文档不多,但您可以查看源代码并找出复制 pyelftools 特定功能的方法。如果这不起作用,您可以尝试使用 pyelftools 来读取/分析任务和使用 elffile 来编辑部分和写入更改。