Linux tools
$ file <binary> # identify file type
$ strings <binary> # extract readable strings$ objdump ... <binary> $ readelf -l <binary>
$ readelf -a <binary> # all$ strace <binary> # trace system calls
$ ltrace <binary> # trace library callsLast updated