🖥️objdump
➡️This is a command-line reference manual for commands and command combinations that you don’t use often enough to remember it. This cheatsheet explains the objdump command with important options and switches using examples.
2 minute read
▁ ▂ ▃ ▄ ꧁ 🔴☠ COMMANDLINE-KUNGFU WITH CHEATSHEETS ☠🔴꧂▅ ▃ ▂ ▁
# ██████╗ ██████╗ ██╗██████╗ ██╗ ██╗███╗ ███╗██████╗
# ██╔═══██╗██╔══██╗ ██║██╔══██╗██║ ██║████╗ ████║██╔══██╗
# ██║ ██║██████╔╝ ██║██║ ██║██║ ██║██╔████╔██║██████╔╝
# ██║ ██║██╔══██╗██ ██║██║ ██║██║ ██║██║╚██╔╝██║██╔═══╝
# ╚██████╔╝██████╔╝╚█████╔╝██████╔╝╚██████╔╝██║ ╚═╝ ██║██║
# ╚═════╝ ╚═════╝ ╚════╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝╚═╝
# objdump
# program for displaying various information about object files
# Display the contents of the overall file header
objdump -f executable
# Display object format specific file header contents
objdump -p executable
# Display the contents of the section headers
objdump -h executable
# Display assembler contents of executable sections
objdump -d executable
# Display assembler contents of all sections
objdump -D executable
# Display the full contents of all sections
objdump -s executable
# Display all the header information
objdump -x executable
# Display debug information
objdump -g executable
# Display the contents of symbol table (or tables)
objdump -t executable
# Display the contents of dynamic symbol table
# Dynamic symbols are those which are resolved during run time
objdump -T executable
# Display the dynamic relocation entries in the file
objdump -R executable
# Display section of interest
# (extremely useful when you know the section related
# to which the information is required)
objdump -s -j.rodata executable
# Use the older disassembly format
objdump -D --prefix-addresses executable
# Execute the objdump by calling the options.txt file
objdump @options.txt
Cheatsheets are an excellent complement to other information sources like Linux man-pages, Linux help, or How-To’s and tutorials, as they provide compact and easily accessible information. While man-pages and detailed tutorials often contain comprehensive explanations and extensive guides, cheatsheets summarize the most important options forthe command objdump in a clear format. This allows users to quickly access the needed information for objdump without having to sift through lengthy texts. Especially in stressful situations or for recurring tasks, cheatsheets for objdump are a valuable resource to work efficiently and purposefully.
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
█║▌│║█║▌★ KALI ★ PARROT ★ DEBIAN 🔴 PENTESTING ★ HACKING ★ █║▌│║█║▌
██╗ ██╗ ██████╗ ██████╗ ██╗ ██╗███████╗██████╗
████████╗██╔══██╗██╔═══██╗╚██╗██╔╝██╔════╝██╔══██╗
╚██╔═██╔╝██║ ██║██║ ██║ ╚███╔╝ █████╗ ██║ ██║
████████╗██║ ██║██║ ██║ ██╔██╗ ██╔══╝ ██║ ██║
╚██╔═██╔╝██████╔╝╚██████╔╝██╔╝ ██╗███████╗██████╔╝
╚═╝ ╚═╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝╚══════╝╚═════╝
█║▌│║█║▌ WITH COMMANDLINE-KUNGFU POWER █║▌│║█║▌
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.