Tips

Install the needed tools:

sudo aptitude install fcrackzip unzip

Then launch the process:

nohup fcrackzip -b -c aA1! -u -l 4-10 Archive.zip > result.txt &

The options are:

• -b: use the bruteforcing mode.

• -c aA1!: use the whole character set: lowercase and uppercase alphabet, numbers and special characters.

• -u: use unzip to weed out false positives.

• -l 4-10: set the password length between 4-10 characters.

• > result.txt: redirect the program's output to result.txt.