2017-09-01 08:42:44 +01:00
|
|
|
# objdump
|
|
|
|
|
2017-09-01 19:59:41 +01:00
|
|
|
> View information about object files.
|
2021-10-07 00:34:03 +01:00
|
|
|
> More information: <https://manned.org/objdump>.
|
2017-09-01 08:42:44 +01:00
|
|
|
|
|
|
|
- Display the file header information:
|
|
|
|
|
|
|
|
`objdump -f {{binary}}`
|
|
|
|
|
2023-08-29 07:59:55 +01:00
|
|
|
- Display all header information:
|
|
|
|
|
|
|
|
`objdump -x {{binary}}`
|
|
|
|
|
2022-08-27 15:13:55 +01:00
|
|
|
- Display the disassembled output of executable sections:
|
2017-09-01 08:42:44 +01:00
|
|
|
|
|
|
|
`objdump -d {{binary}}`
|
|
|
|
|
2022-08-27 15:13:55 +01:00
|
|
|
- Display the disassembled executable sections in intel syntax:
|
|
|
|
|
|
|
|
`objdump -M intel -d {{binary}}`
|
|
|
|
|
2017-09-01 19:59:41 +01:00
|
|
|
- Display a complete binary hex dump of all sections:
|
2017-09-01 08:42:44 +01:00
|
|
|
|
|
|
|
`objdump -s {{binary}}`
|