Skip to content

Instantly share code, notes, and snippets.

@t41y0u
t41y0u / unzip.py
Last active December 5, 2019 12:32
A script to brute force password protected zip files given wordlist using the python module zipfile
# 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'