Skip to content

Commit 21900ef

Browse files
committed
added zip file password cracker tutorial
1 parent 650f4f4 commit 21900ef

File tree

6 files changed

+5035
-0
lines changed

6 files changed

+5035
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ This is a repository of all the tutorials of [The Python Code](https://www.thepy
2525
- [How to Use Hash Algorithms in Python using hashlib](https://www.thepythoncode.com/article/hashing-functions-in-python-using-hashlib). ([code](ethical-hacking/hashing-functions/))
2626
- [How to Brute Force FTP Servers in Python](https://www.thepythoncode.com/article/brute-force-attack-ftp-servers-using-ftplib-in-python). ([code](ethical-hacking/ftp-cracker))
2727
- [How to Extract Image Metadata in Python](https://www.thepythoncode.com/article/extracting-image-metadata-in-python). ([code](ethical-hacking/image-metadata-extractor))
28+
- [How to Crack Zip File Passwords in Python](https://www.thepythoncode.com/article/crack-zip-file-password-in-python). ([code](ethical-hacking/zipfile-cracker))
2829

2930
- ### [Machine Learning](https://www.thepythoncode.com/topic/machine-learning)
3031
- ### [Natural Language Processing](https://www.thepythoncode.com/topic/nlp)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# [How to Crack Zip File Passwords in Python](https://www.thepythoncode.com/article/crack-zip-file-password-in-python)
2+
To run this:
3+
- `pip3 install -r requirements.txt`
4+
- Cracking `secret.zip` file with the password list in `wordlist.txt` file, use the following command:
5+
```
6+
python zip_cracker.py secret.zip wordlist.txt
7+
```
8+
- For a bigger list, consider downloading [rockyou](https://github.com/brannondorsey/naive-hashcat/releases/download/data/rockyou.txt) wordlist.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
tqdm
20.1 KB
Binary file not shown.

0 commit comments

Comments
 (0)