Forrest logo
back to context overview

objdump

List of commands for objdump:

  • objdump:tldr:10a58 objdump: Display a complete binary hex dump of all sections.
    $ objdump -s ${binary}
    try on your machine
    explain this command
  • objdump:tldr:3a60c objdump: Display the disassembled output of executable sections.
    $ objdump -d ${binary}
    try on your machine
    explain this command
  • objdump:tldr:7b60a objdump: Display the disassembled executable sections in intel syntax.
    $ objdump -M intel -d ${binary}
    try on your machine
    explain this command
  • objdump:tldr:7be22 objdump: Display the file header information.
    $ objdump -f ${binary}
    try on your machine
    explain this command
back to context overview