mirror of
https://github.com/hastagAB/Awesome-Python-Scripts.git
synced 2024-11-24 04:21:08 +00:00
25 lines
427 B
Markdown
25 lines
427 B
Markdown
# anyZipcrack-dictionary
|
|
This python script will crack any zip file using given dictionary file
|
|
## Requipment
|
|
|
|
python 3.++ or 2.++
|
|
|
|
# Usage
|
|
try using the given zip file and dictionary file
|
|
|
|
## For windows
|
|
|
|
```bash
|
|
$ python zipCrack.py -f evil.zip -d dictionary.txt
|
|
```
|
|
|
|
## For unix/mac/linux
|
|
|
|
```bash
|
|
$ ./zipCrack.py -f evil.zip -d dictionary.txt
|
|
```
|
|
or that way
|
|
```bash
|
|
$ python zipCrack.py -f evil.zip -d dictionary.txt
|
|
```
|