run the file command!
file
Check what kind of security features are enabled
Check the properties of a binary with Checksecarrow-up-right.
Output example from their repo:
Check binaries for security hardening features. I find it less reliable when it comes to RELRO.
Included in the devscripts package on debian-based distros.
gefarrow-up-right has a pretty neat checksec command.
checksec
strings <FILE> - look for any readable clue.
strings <FILE>
objdump -x <FILE> | less - Information about the file, headers, sections and more. pipe for easy reading.
objdump -x <FILE> | less
strace <FILE> - examine syscalls in the binary.
strace <FILE>
ltrace <FILE> - examine library calls in the binary.
ltrace <FILE>
Last updated 5 years ago