我安装了fcrackzip。fcrackzip的帮助页面说
$ fcrackzip --h
fcrackzip version 1.0, a fast/free zip password cracker
written by Marc Lehmann <pcg@goof.com> You can find more info on*emphasized text*
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如何破解使用fcrackzip或任何其他可用工具使用密码保护的any文件?
发布于 2020-05-04 20:38:07
有几种方法可以做到这一点。
-u标志清除不正确的密码,-b用于强制执行,-l用于指定密码长度,例如:4-8。您可以使用带有-D和-p标志的密码列表,如: fcrackzip -u -b -D -p /home/Desktop/passlistword.txt file.zipyourfilename.zip.xml的文件,并且当您下次使用它时,它会恢复到您停止的位置。rar2john,然后: John -format=zip whateveryoucallit.txt或--format=rar。所有这些都可能需要一段时间,这取决于密码的长度和字符,但您可以这样做。如果没有安装这些工具中的任何一个,请用sudo apt-get install rarcrack/john/fcrackzip安装它们,如果还不够的话,您可以下载一个快速的Windows压缩破解器,比如Passper for Zip,并使用葡萄酒运行它。https://askubuntu.com/questions/1003523
复制相似问题