Skip to content

Commit 8f64ae1

Browse files
authored
Create README.md
1 parent a02b561 commit 8f64ae1

File tree

1 file changed

+21
-0
lines changed
  • BasicPythonScripts/Crack Any Password

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
## Description:
2+
- My project works on Crack Any Password.
3+
- To create a python script which is crack any password, we will need to import a **random** module.
4+
- It work on the concept of **brute force**,
5+
- So, the process is something like that we will ask the user to enter some characters i.e. password, and then we will try to guess the password using brute force attack.
6+
7+
## Procedure:
8+
```python
9+
from random import *
10+
```
11+
- First after importing modules.
12+
- After that we will take input from the user.
13+
- Then we will store alphabet letter to use them to crack password.
14+
- After that we will initialize an empty string **guess**.
15+
- Then we will use while loop to generate many passwords untill one of them does not matches.
16+
17+
## Sample Output:
18+
![LGM](https://github.com/AmitGupta700/Awesome_Python_Scripts/blob/main/BasicPythonScripts/Crack%20Any%20Password/Images/output.png)
19+
20+
## For any query please contact:
21+
<a href="https://www.linkedin.com/in/amit-gupta-681206191/">LinkedIn</a>

0 commit comments

Comments
 (0)