首页 技术 正文
技术 2022年11月15日
0 收藏 601 点赞 4,493 浏览 1569 个字

fcrackzip简介

fcrackzip是一款专门破解zip类型压缩文件密码的工具,工具小巧方便、破解速度快,能使用字典和指定字符集破解,适用于linux、mac osx 系统

fcrackzip安装

brew install fcrackzip
fcrackzip参数介绍

lysmacbookair:Desktop laoyan$ fcrackzip -h
fcrackzip version 1.0, a fast/free zip password cracker
written by Marc Lehmann https://www.shuzhiduo.com/A/E35ppx2B5v/pcg@goof.com You can find more info on
http://www.goof.com/pcg/marc/
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
[-l|–length min-max] check password with length min to max
[-u|–use-unzip] use unzip to weed out wrong passwords
[-m|–method num] use method number "num" (see below)
[-2|–modulo r/m] only calculcate 1/m of the password
file… the zipfiles to crack
methods compiled in (* = default):
0: cpmask
1: zip1
*2: zip2, USE_MULT_TAB
部分重要参数说明

-c 指定字符集,字符集 格式只能为 -c ‘aA1!:’
a 表示小写字母[a-z]
A 表示大写字母[A-Z]
1 表示阿拉伯数字[0-9]
! 感叹号表示特殊字符[!:$%&/()=?{[]}+*~#]
: 表示包含冒号之后的字符(不能为二进制的空字符),例如 a1:$% 表示 字符集包含小写字母、数字、$字符和%百分号
具体请参考

man fcrackzip
fcrackzip案例

假如有一个文件123lybbn.zip文件加密,密码为qsb的弱密码,我们可使用fcrackzip暴利破解

lysmacbookair:Desktop laoyan$ fcrackzip -b -c ‘aA1’ -l 1-10 -u 123lybbn.zip
PASSWORD FOUND!!!!: pw == qsb
这里测试只需要几秒钟就破解出来了,速度是不是非常的快

参数解释:

-b 表示使用暴利破解的方式
-c ‘aA1’ 表示使用大小写字母和数字混合破解的方式
-l 1-10 表示需要破解的密码长度为1到10位
-u 表示只显示破解出来的密码,其他错误的密码不显示出
如果想要使用现有的字典破解的话,你可以写成如下形式

lysmacbookair:Desktop laoyan$ fcrackzip -D -p lybbnpass.txt -u 123lybbn.zip
PASSWORD FOUND!!!!: pw == qsb
参数解释:

-D 表示要使用字典破解
-p 表示要使用那个字典破解

相关推荐
python开发_常用的python模块及安装方法
adodb:我们领导推荐的数据库连接组件bsddb3:BerkeleyDB的连接组件Cheetah-1.0:我比较喜欢这个版本的cheeta…
日期:2022-11-24 点赞:878 阅读:9,129
Educational Codeforces Round 11 C. Hard Process 二分
C. Hard Process题目连接:http://www.codeforces.com/contest/660/problem/CDes…
日期:2022-11-24 点赞:807 阅读:5,601
下载Ubuntn 17.04 内核源代码
zengkefu@server1:/usr/src$ uname -aLinux server1 4.10.0-19-generic #21…
日期:2022-11-24 点赞:569 阅读:6,444
可用Active Desktop Calendar V7.86 注册码序列号
可用Active Desktop Calendar V7.86 注册码序列号Name: www.greendown.cn Code: &nb…
日期:2022-11-24 点赞:733 阅读:6,218
Android调用系统相机、自定义相机、处理大图片
Android调用系统相机和自定义相机实例本博文主要是介绍了android上使用相机进行拍照并显示的两种方式,并且由于涉及到要把拍到的照片显…
日期:2022-11-24 点赞:512 阅读:7,852
Struts的使用
一、Struts2的获取  Struts的官方网站为:http://struts.apache.org/  下载完Struts2的jar包,…
日期:2022-11-24 点赞:671 阅读:4,940