logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Analyze Binary Files - Inspect with Rabin2 | Online Free DevTools by Hexmos

Analyze binary files with Rabin2, a powerful tool for extracting information such as symbols, sections, and linked libraries. Free online tool, no registration required.

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}}

See Also