Files
tldr/pages.zh/linux/fcrackzip.md

28 lines
911 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.

# 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`