文章详情参见黑白之道
一、简单介绍
fcrackzip是一款linux平台下的zip密码爆破神器,kali上默认自带这款工具,其他linux发行版系统请执行 sudo apt-get install fcrackzip 来安装此工具。

二、简单使用
终端输入 fcrackzip -h 我们来看下使用帮助
fcrackzip-一款zip破解工具_第1张图片
USAGE: fcrackzip

[-b|--brute-force]        use brute force algorithm   暴破模式

[-D|--dictionary]         use a dictionary       使用一个自定义字典

[-B|--benchmark]          execute a small benchmark  速度测试

[-c|--charset characterset]   use characters from charset      指定字符类型

[-h|--help]             show this message    显示消息

[--version]             show the version of this program   显示版本

[-V|--validate]           sanity-check the algortihm  健全性检查

[-v|--verbose]           be more verbose   更详细

[-p|--init-password string]   use string as initial password/file 指定开始字符(比如要只记得密码是3开头的6位纯数字,可以指定从300000开始破解,节约时间)

[-l|--length min-max]   check password with length min to max 指定密码长度区间

[-u|--use-unzip]      use unzip to weed out wrong passwords   使用unzip清除错误的密码 

[-m|--method num]             use method number "num" (see below) (指定破解类型)下面的数字选项

[-2|--modulo r/m]             only calculcate 1/m of the password  只计算 1/m 的密码

      file...                    the zipfiles to crack

methods compiled in (* = default):

0: cpmask

1: zip1

*2: zip2, USE_MULT_TAB

下面简单介绍下 -c下的参数

a   include all lowercase characters [a-z]         包含小写a-z

A   include all uppercase characters [A-Z]         包含大写A-Z       

1   include the digits [0-9]                  包含数字0-9

!   include [ ! : $ % & / ( ) = ? { [ ] } * ~ #]      包含特殊字符

比如:fcrackzip -b -c a -l 1-4 -u  test.zip  破解4位纯小写字母的test.zip文件,这里需要注意一定要指定-u参数,不然显示不出来密码。