ZipCrack is a Python script for brute forcing password-protected zip files using a wordlist. It is fully open source and available on GitHub.
- Repository Link: GitHub.com/LoopUE/ZipCrack
- Python 3.x
- Required Python libraries (
zipfile
,argparse
)
-
Clone the repository or download the
ZipCrack.py
script. -
Open a terminal or command prompt.
-
Navigate to the directory containing the script.
-
Run the script with the following command:
python ZipCrack.py <path_to_zipfile> <path_to_wordlist>
Replace
<path_to_zipfile>
with the path to your zip file and<path_to_wordlist>
with the path to your wordlist file.
zipfile
: Path to the zip file you want to brute force.wordlist
: Path to the wordlist file containing potential passwords.
python ZipCrack.py example.zip wordlist.txt
- This script performs a brute force attack by trying each password from the wordlist until the correct password is found.
- Ensure that you have permission to perform brute force attacks and are using it responsibly and ethically.