zipC

https://github.com/kavin-jindal/zipC

This is a simple tool that I wrote in Python 3 to brute-force ZIP file passwords. I built this project a while ago to get some scripting experience in the language.

You can brute-force passwords of locked ZIP archives by providing a wordlist. The program will crack the password and extract the contents of the given file in the directory specified.

Installation

git clone https://github.com/kavin-jindal/zipC.git
pip install colorama

Usage

Usage: 
    python zipc.py -f <zipfile> -w <wordlist> -p <output_path>

Required arguments:
    -f, --file [path]       Path to the target zip file
    -w, --wordlist [path]   Path to the wordlist to be used
Optional arguments:
    -o, --output [path]     Directory to extract the file in
    -h, --help              Shows the help menu

Examples: 
    python zipc.py -f main.zip -w rockyou.txt 
    python zipc.py -f main.zip -w rockyou.txt -o /home/Desktop/main
    python zipc.py --file /home/john/Desktop/archive.zip -w rockyou.txt -o /home/Documents/archive

Examples:

Example 1

python zipc.py -w rockyou.txt -f main.zip

Example 2

python zipc.py -w rockyou.ltxt -f main.zip -o /main/test

Last updated