Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # importing random
- from random import *
- # taking input from user
- user_pass = input("Enter your password: "+ "\n")
- # storing alphabet letter to use thm to crack password
- password = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j','k',
- 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't','u','v',
- 'w', 'x', 'y', 'z',]
- # initializing an empty string
- guess = ""
- # using while loop to generate many passwords untill one of
- # them does not matches user_pass
- while (guess != user_pass):
- guess = ""
- # generating random passwords using for loop
- for letter in range(len(user_pass)):
- guess_letter = password[randint(0, 25)]
- guess = str(guess_letter) + str(guess)
- # printing guessed passwords
- print(guess)
- # printing the matched password
- print("Your password is",guess)
Add Comment
Please, Sign In to add comment