79334312

Date: 2025-01-06 21:00:54
Score: 1.5
Natty:
Report link

passwordCracker.py > ...

1 from random import *

5

6

7

8

9

2

3

4

import os

u_pwd = input("Enter a password: ")

pwd=['a','b', 'c', 'd', 'e', 'f','g', 'h','i' '1', '2', '3', '4', '5', '6']

pw=""

while(pw!=u_pwd):

pw=""

for letter in range(len(u_pwd)):

10

guess_pwd = pwd [randint(0,17)]

11

pw=str(guess_pwd)+str(pw)

12

print(pw)

13

print("Cracking Password...Please

14

os.system("cls")

15

print("Your Password Is :",pw)

16

17

#LET'S CRACK-IT!

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Manjeet Chahal Mr Mone