Files
tldr/pages.zh/common/rabin2.md

25 lines
587 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# rabin2
> 获取有关二进制文件ELF、PE、Java CLASS、Mach-O的信息 - 符号、节、链接库等。
> 与 `radare2` 捆绑在一起。
> 更多信息:<https://manned.org/rabin2>。
- 显示有关二进制文件的一般信息(架构、类型、字节序):
`rabin2 -I {{path/to/binary}}`
- 显示链接的库:
`rabin2 -l {{path/to/binary}}`
- 显示从库导入的符号:
`rabin2 -i {{path/to/binary}}`
- 显示二进制文件中包含的字符串:
`rabin2 -z {{path/to/binary}}`
- 以 JSON 格式显示输出:
`rabin2 -j -I {{path/to/binary}}`