objdump: View information about object files
ยท
119 words
ยท
1 minute read
What is objdump? ๐
View information about object files.
More information: https://manned.org/objdump .
Usage ๐
Display the file header information:
objdump [-f|--file-headers] path/to/binary
Display all header information:
objdump [-x|--all-headers] path/to/binary
Display the disassembled output of executable sections:
objdump [-d|--disassemble] path/to/binary
Display the disassembled executable sections in Intel syntax:
objdump [-M|--disassembler-options] intel [-d|--disassemble] path/to/binary
Display a complete binary hex dump of all sections:
objdump [-s|--full-contents] path/to/binary
I hope you enjoyed reading this post as much as I enjoyed writing it. If you know a person who can benefit from this information, send them a link of this post. If you want to get notified about new posts, follow me on YouTube , Twitter (x) , LinkedIn , and GitHub .