How to list imported functions (.plt) for an ELF executable without disassembling using objdump?
3
votes
1
answer
4424
views
Currently, I check for imported functions (
.plt
) using objdump
:
objdump -D -j .plt myprog | grep '@plt'
However, it doesn't seem right to have objdump
output annotated disassembly to grep
to list imported (.plt
) functions.
To check exported functions, I use readelf -s myprog
, but the imported .plt
functions doesn't show up here?
How can I list all imported (.plt
) function in an ELF executable?
Asked by Shuzheng
(4931 rep)
Jun 23, 2019, 08:38 AM
Last activity: Mar 22, 2024, 07:05 PM
Last activity: Mar 22, 2024, 07:05 PM