linux、Ubuntu、centos下下载一个fcrackzip就能破解zip压缩包的密码
我们以Ubuntu为例
sudo apt-get install fcrackzip
用法:
fcrackzip -b -v -u file.zip
-h, –help(显示帮助)
–version(显示程序版本)
-l, –length(最小和最大密码长度)
-p, –init-password(指定密码模式,例如,-p aaaa1 表示密码由4个字母和一个数字组成)
-v,-verbose(详细模式)
-u,-use-unzip(使用解压缩命令验证密码)
-D,-dictionary(使用字典)
-b, --brute-force(直接枚举密码)
-B,--benchmark(做个小测试)
-c,--charset字符集(指定密码由什么组成,例如-c 1表示由数字组成,- ca 字母,-c Aa1! 大小写字母、数字和符号)
如果是centos,需要手动写作rpm
地址:https://centos.pkgs.org/7/forensics-x86_64/fcrackzip-1.0-1.el7.x86_64.rpm.html
wget https://forensics.cert.org/centos/cert/7/x86_64/fcrackzip-1.0-1.el7.x86_64.rpm
安装rpm包
yum install ./fcrackzip-1.0-1.el7.x86_64.rpm
网友回复