diff --git a/pages/linux/objdump.md b/pages/linux/objdump.md new file mode 100644 index 000000000..96146f1b7 --- /dev/null +++ b/pages/linux/objdump.md @@ -0,0 +1,15 @@ +# objdump + +> View information on object files. + +- Display the file header information: + +`objdump -f {{binary}}` + +- Display the dis-assembled output of executable sections: + +`objdump -d {{binary}}` + +- Display complete binary hex dump of all sections: + +`objdump -s {{binary}}`