From d1f830f9df3d32519c920a1b9f037fcee8049ee9 Mon Sep 17 00:00:00 2001 From: alufers Date: Wed, 7 Feb 2018 14:41:37 +0100 Subject: [PATCH] rabin2: add page (#1974) --- pages/common/rabin2.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/common/rabin2.md diff --git a/pages/common/rabin2.md b/pages/common/rabin2.md new file mode 100644 index 0000000000..4dfe1e0487 --- /dev/null +++ b/pages/common/rabin2.md @@ -0,0 +1,24 @@ +# rabin2 + +> Get information about binary files (ELF, PE, Java CLASS, Mach-O) - symbols, sections, linked libraries, etc. +> Comes bundled with `radare2`. + +- 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}}`