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

View File

@@ -0,0 +1,28 @@
# fcrackzip
> ZIP档案密码破解工具。
> 更多信息:<https://manned.org/fcrackzip>。
- 使用暴力破解一个长度为4到8个字符的密码并且只包含字母数字字符顺序很重要
`fcrackzip --brute-force --length 4-8 --charset aA1 {{archive}}`
- 在详细模式下暴力破解一个长度为3个字符的密码只包含小写字母、`$``%`
`fcrackzip -v --brute-force --length 3 --charset a:$% {{archive}}`
- 暴力破解一个只包含小写字母和特殊字符的密码:
`fcrackzip --brute-force --length 4 --charset a! {{archive}}`
- 从密码`12345`开始暴力破解一个只包含数字的密码:
`fcrackzip --brute-force --length 5 --charset 1 --init-password 12345 {{archive}}`
- 使用字典破解密码:
`fcrackzip --use-unzip --dictionary --init-password {{wordlist}} {{archive}}`
- 基准测试破解性能:
`fcrackzip --benchmark`