- GPL Open Source application for cracking zip passwords called fcrackzip:
bash# fcrackzip -h
fcrackzip version 1.0, a fast/free zip password cracker
written by Marc Lehmann 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
- - - - - - - - - - - - - - - - - - -
- Example 1) Dictionary attack:
bash# fcrackzip -v -D -p /usr/share/dict/words confidental.zip
found file 'list.xml', (size cp/uc 12/ 0, flags 9, chk 61f7)
possible pw found: zoologists ()
^D
bash#
- - - - - - - - - - - - - - - - - - -
- Example 2) Bruteforce with alphanumeric characters (a-z 0-9) with lenght of 7 characters:
bash# fcrackzip -v -b -c a1 -p aaaaaaa secret.zip
found file 'secret.doc', (size cp/uc 12/ 0, flags 9, chk 61f7)
possible pw found: 1337pwd ()
checking pw 15igvpt
^D
bash#