rabin2
Get information about binary files (ELF, PE, Java CLASS, Mach-O) - symbols, sections, linked libraries, etc. Comes bundled with radare2. More information: <https://manned.org/rabin2>.
Install
- All systems
-
curl cmd.cat/rabin2.sh
- Debian
-
apt-get install radare2
- Ubuntu
-
apt-get install radare2
- Arch Linux
-
pacman -S radare2
- Kali Linux
-
apt-get install radare2
- Fedora
-
dnf install radare2
- Windows (WSL2)
-
sudo apt-get update
sudo apt-get install radare2
- OS X
-
brew install radare2
- Raspbian
-
apt-get install radare2
- Dockerfile
- dockerfile.run/rabin2
Get information about binary files (ELF, PE, Java CLASS, Mach-O) - symbols, sections, linked libraries, etc. Comes bundled with radare2. More information: <https://manned.org/rabin2>.
-
Display general information about a binary (architecture, type, endianness):
rabin2 -I path/to/binary
-
Display linked libraries:
rabin2 -l path/to/binary
-
Display symbols imported from libraries:
rabin2 -i path/to/binary
-
Display strings contained in the binary:
rabin2 -z path/to/binary
-
Display the output in JSON:
rabin2 -j -I path/to/binary
© tl;dr; authors and contributors