A simple python script for cracking a password-protected zip file.
Utilises a masterlist of passwords and uses pyzipper module for working with AES-encrypted zip files.
cobracodecracker.py -> main program
passwords.txt -> password masterlist (most commonly used passwords in order of usage)
secret4u.zip & test1.zip -> test files
(ensure pyzipper module is installed; pip install pyzipper
)
Credits:
https://pypi.org/project/pyzipper/;
https://github.com/doyler/SecurityTools/tree/master/ZipCracker;
https://github.com/agusmakmun/Python-ZIP-Cracker;