OBJDUMP

This is a command-line tool used to display detailed information about object files, executables, and libraries. It enables developers to inspect the contents of compiled binaries, including assembly instructions, symbol tables, section headers, and relocation information. It is commonly used for debugging and reverse engineering and can disassemble machine code back into readable assembly language. It is an invaluable utility for understanding how high-level code is translated into low-level instructions.

Last updated