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.
我基本上是在寻找一种在二进制文件中提取 _fini 地址的方法。我能想到的天真的方法是使用 objdump 并解析 _fini。有没有更好的方法来做到这一点(例如不使用 objdump)。
谢谢!
[karma100@localhost ~]$ nm attackme | grep _fini 080484b0 T __libc_csu_fini 080484ec T _fini [karma100@localhost ~]$