●readelf分析ELF文件
⊙readelf -v 显示版本
⊙readelf -h 显示帮助
⊙readelf -a test 显示test的全部信息
⊙readelf -h test
显示ELF的Header信息(文件的前52字节)
⊙readelf -l test
显示test的Program Header Table中的每个Prgram Header Entry的信息
⊙readelf -S test
显示test的Section Header Table中的每个Section Header Entry的信息
⊙readelf -g test
显示test的Section Group的信息
⊙readelf -s test
显示test的Symbol Table中的每个Symbol Table Entry的信息
⊙readelf -e test
显示test的全部头信息(等同与 readelf -h -l -S test)
⊙readelf -n test
显示test的note段的信息
⊙readelf -r test
显示test中的可重定位段的信息
⊙readelf -d test
显示test中的Dynamic Section的信息
⊙readelf -V test
显示test中的GNU Version段信息Shell之readelf命令简介
最新推荐文章于 2025-01-03 08:25:43 发布
本文详细介绍readelf工具的各种命令选项,包括显示ELF文件的头部信息、符号表、动态部分等,帮助读者深入理解如何使用readelf进行ELF文件分析。
357

被折叠的 条评论
为什么被折叠?



