You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Crack a Zip file Password using tqdm (Brute Force)
2
+
The aim of the program is to crack a zip file's password using simple brute force approach from a given words list.
3
+
4
+
### Library Used:
5
+
* Python [**tqdm**](https://pypi.org/project/tqdm/) - Instantly shows a smart progress meter for loops.
6
+
7
+
### Prerequisites:
8
+
Can be installed using pip/pip3
9
+
10
+
`>> pip3 install tqdm`
11
+
12
+
### Usage:
13
+
`>> python crack_zip.py`
14
+
15
+
### I/O:
16
+
```
17
+
Enter Words list filename: $(wordlist)
18
+
19
+
Enter zip filename: $(zipfile)
20
+
21
+
Total passwords to test: $(total_number_of_words_being_checked)
22
+
23
+
Password found: $(password)
24
+
```
25
+
**OR**
26
+
```
27
+
Password not found, try other wordlist.
28
+
```
29
+
***NOTE: Example words list can be downloaded from this [link](https://drive.google.com/file/d/19vpcd907W9MnlG93F1ovIRv8H1YKCJhk/view?usp=sharing) along with sample zip file attached with the code file(secret.zip).***
0 commit comments