Skip to content

Instantly share code, notes, and snippets.

@msfidelis
Created January 19, 2016 14:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save msfidelis/dbccc5d279c689ac3816 to your computer and use it in GitHub Desktop.
Save msfidelis/dbccc5d279c689ac3816 to your computer and use it in GitHub Desktop.
#FUNÇÃO MAIN DO SISTEMA
#Pegamos o e-mail e a senha do e-mail fake que criamos para o ataque
def main():
print banner()
email_user = raw_input('INFORME SEU E-MAIL (GMAIL): ')
email_pass = raw_input('INFORME SUA SENHA: ')
validade,conn = test(email_user, email_pass)
print '[!] CONEXÃO REALIZADA COM SUCESSO!'
print conn
if validade == True:
send_emails(email_user,conn)
else:
print conn_error()
sys.exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment