This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# A script to brute force password protected zip files given wordlist using the python module zipfile | |
# Created by Duong for GCI 2019 | |
import time | |
import zipfile | |
# Replace the filename with your actual filename | |
filename = 'test.zip' | |
wordlist = 'wordlist.txt' |