-
This page collects tools for the Linux Executable and Linking Format (ELF) with some basic commands. checksec.sh Shows which exploits mitigations a program has. (Source) ./checksec.sh --file file.elf GDB See the gdb post. Objdump Objdump shows information about a binary (object) file. Show the assemble code from a ELF file. objdump -d bin.elf Show all symbols (e.g.…