fcrackzip爆破zip文件

安装

apt-get install fcrackzip

help

fcrackzip --help                         

fcrackzip version 1.0, a fast/free zip password cracker
written by Marc Lehmann <[email protected]> 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 algorithm
          [-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):

使用

重要参数说明

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

PASSWORD FOUND!!!!: pw == qsb

参数解释

       -b 表示使用暴利破解的方式
    ·  -c 'aA1' 表示使用大小写字母和数字混合破解的方式
    ·  -l 1-10 表示需要破解的密码长度为1到10位
    ·  -u 表示只显示破解出来的密码,其他错误的密码不显示出

字典使用

fcrackzip  -D -p lybbnpass.txt  -u 123lybbn.zip

PASSWORD FOUND!!!!: pw == qsb


参数解释:

-D 表示要使用字典破解
-p 表示要使用那个字典破解
注:Kali linux自带了一些字典在/usr/share/wordlists/文件夹下

猜你喜欢

转载自blog.csdn.net/u012206617/article/details/124720114