Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2014
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.99 KB | None | 0 0
  1. import time
  2.  
  3. print("Welcome to System Security Inc.")
  4. print("\n\nUser 0132 finger printer detected, continuing sequence")
  5. time.sleep(1)
  6. print("\n\n...Loading...")
  7. time.sleep(2)
  8. print("\n\nPlease enter your usename")
  9.  
  10. if input == "bradley":
  11.     print("Access granted, program continuing")
  12. else:
  13.     print("Invalid username detected, please try again")  
  14.  
  15. inp = raw_input()       # Get the input
  16. while inp != "bradley":        # Loop until it is a correct username
  17.     inp = input()   # Get the input again
  18.  
  19.     import getpass
  20.  
  21. p = getpass.getpass(prompt="\n\nWhat is your password?")
  22. if p.lower() == "password":
  23.     print("Access granted, program continuing")
  24.     time.sleep(2)
  25.     print("\n\n...Loading")
  26.     time.sleep(2)
  27.     print("\n\n.backdoor.jar uploading")
  28.     time.sleep(4)
  29.     print("\n\nbackdoor.jar upload complete")
  30. else:
  31.     print("Invalid password detected, programming shutting down")    
  32.  
  33. input("\n\nPress the enter key to exit.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement