mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-14 03:59:33 +00:00
Move pages under tldr, lint run.sh, update docs
This commit is contained in:
30
tldr/rabin2
Normal file
30
tldr/rabin2
Normal file
@@ -0,0 +1,30 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# 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}}`
|
||||
Reference in New Issue
Block a user