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