add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

25
pages.zh/common/rabin2.md Normal file
View File

@@ -0,0 +1,25 @@
# 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}}`