我想获取有关ELF文件动态部分的信息。基本上与使用命令行得到的信息相同:
readelf-d elf文件

最佳答案

使用pyelftools:
tag = section.get_tag(n)
给出特定节的第n个标记

09-30 17:49