Advertisement
IshaanGarud

PASSWORD CRACKER BY Me(Age:12)

Sep 29th, 2020 (edited)
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. """A PASSWORD_CRACKER Made By Me , It takes long time to crack the passowrd , But It Is Very Effective
  2. Although I am only 12 YEARS OlD(tomorrow i will be 13(30th SEP))
  3. I Made It On My Own
  4. Please Enjoy!!!
  5.  
  6. INSTAGRAM:- @ishaan_garud3097
  7. :-) :-) :-D :-D """
  8.  
  9. from random import *
  10.  
  11. user_pass = input("Enter your password:-")
  12. 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']
  13. guess = ""
  14.  
  15. while (guess != user_pass):
  16. guess = ""
  17. for letter in range(len(user_pass)):
  18. guess_letter = password[randint(0,25)]
  19. guess = str(guess_letter)+str(guess)
  20.  
  21. print(guess)
  22. print("Your password is",guess)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement