offensive-tools/rev/objdump/SKILL.md
Auth/lab ref: binutils inspection and disassembly tool for ELF and many other object formats.
npx skillsauth add aeondave/malskill objdumpInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Quick static inspection and disassembly without firing up a full GUI. Tiny hammer, surprisingly sharp.
Use objdump when you need to:
.rodata or .text# Disassemble executable sections
objdump -d ./chall
# Disassemble all sections, not just code-marked ones
objdump -D ./chall
# Intel syntax on x86/x86-64
objdump -d -Mintel ./chall
objdump -d -Mintel ./chall
objdump -t ./chall
objdump -T ./chall
objdump -x ./chall
objdump -s -j .rodata ./chall
objdump -s -j .data ./chall
objdump -S -Mintel ./chall
readelf when you need canonical ELF metadata rather than a friendlier summary.-D is useful for hand-marked shellcode regions or strange packer output where section flags lie.objdump -s -j .rodata with strings when looking for nearby format strings, keys, or banners.gdb, strings, and readelf instead of trusting a single view.No bundled scripts/, references/, or assets/.
Use the GNU binutils manual for architecture-specific -M options and file-format nuances.
development
Auth/lab ref: Unicorn Engine CPU-only emulation for shellcode, decryptors, custom VM handlers, instruction tracing, memory hooks, and register-level experiments.
development
Auth/lab ref: Renode board and SoC simulation for MCU/RTOS firmware, UART/GPIO/peripheral modeling, GDB remote debugging, REPL platforms, and RESC scripts.
development
Auth/lab ref: Qiling OS-layer binary emulation for PE/ELF/Mach-O/UEFI/shellcode with rootfs, syscall/API hooks, filesystem mapping, and runtime patching.
databases
Auth/lab ref: QEMU user-mode and full-system emulation for cross-arch binaries, firmware, kernels, disks, serial consoles, networking, and GDB stubs.