I have installed fcrackzip. The help page of fcrackzip says
$ fcrackzip --h
fcrackzip version 1.0, a fast/free zip password cracker
written by Marc Lehmann <> You can find more info on*emphasized text*
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_TABHow can I crack the zipfile which is protected with password with fcrackzip or any other available tool?
51 Answer
There are a few ways to do this.
fcrackzip: To brute force you can use
fcrackzip -u -b -v file.zipThe
-uflag weeds out incorrect passwords,-bis for brute-forcing,-lis for specifying the password length, e.g:4-8. You can use a password-list with the-Dand-pflags, like so:fcrackzip -u -b -D -p /home/Desktop/passwordlist.txt file.zipRarCrack:
rarcrack --type zip/7z/rar file.zipI like this one as it saves cracking progress to a file called
yourfilename.zip.xml, and will pick up where you left off when you next use it.John the Ripper: Generate the hash first using
zip2john file.zip > whateveryouwanttocallit.txtor use
rar2john, depending on the file, and then:john --format=zip whateveryoucallit.txtor
--format=rar.All of these can take a while depending on the length of the password, and the characters, but there you go.
If any of these tools aren't installed, install them with
sudo apt-get install rarcrack/john/fcrackzipIf this is still not enough, you can download a fast Windows zip cracker, such as Passper for Zip, and run it with Wine.