-
-
Notifications
You must be signed in to change notification settings - Fork 581
/
nosqlmap.py
executable file
·544 lines (457 loc) · 18.6 KB
/
nosqlmap.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
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
#!/usr/bin/python
# -*- coding: utf-8 -*-
# NoSQLMap Copyright 2012-2017 NoSQLMap Development team
# See the file 'doc/COPYING' for copying permission
from exception import NoSQLMapException
import sys
import nsmcouch
import nsmmongo
import nsmscan
import nsmweb
import os
import signal
import ast
import argparse
def main(args):
signal.signal(signal.SIGINT, signal_handler)
global optionSet
# Set a list so we can track whether options are set or not to avoid resetting them in subsequent calls to the options menu.
optionSet = [False]*9
global yes_tag
global no_tag
yes_tag = ['y', 'Y']
no_tag = ['n', 'N']
global victim
global webPort
global uri
global httpMethod
global platform
global https
global myIP
global myPort
global verb
global scanNeedCreds
global dbPort
# Use MongoDB as the default, since it's the least secure ( :-p at you 10Gen )
platform = "MongoDB"
dbPort = 27017
myIP = "Not Set"
myPort = "Not Set"
if args.attack:
attack(args)
else:
mainMenu()
def mainMenu():
global platform
global victim
global dbPort
global myIP
global webPort
global uri
global httpMethod
global https
global verb
global requestHeaders
global postData
mmSelect = True
while mmSelect:
os.system('clear')
print " _ _ ___ ___ _ __ __ "
print "| \| |___/ __|/ _ \| | | \/ |__ _ _ __ "
print "| .` / _ \__ \ (_) | |__| |\/| / _` | '_ \\"
print("|_|\_\___/___/\__\_\____|_| |_\__,_| .__/")
print(" v0.7 [email protected] |_| ")
print "\n"
print "1-Set options"
print "2-NoSQL DB Access Attacks"
print "3-NoSQL Web App attacks"
print "4-Scan for Anonymous " + platform + " Access"
print "5-Change Platform (Current: " + platform + ")"
print "x-Exit"
select = raw_input("Select an option: ")
if select == "1":
options()
elif select == "2":
if optionSet[0] == True and optionSet[4] == True:
if platform == "MongoDB":
nsmmongo.netAttacks(victim, dbPort, myIP, myPort)
elif platform == "CouchDB":
nsmcouch.netAttacks(victim, dbPort, myIP)
# Check minimum required options
else:
raw_input("Target not set! Check options. Press enter to continue...")
elif select == "3":
# Check minimum required options
if (optionSet[0] == True) and (optionSet[2] == True):
if httpMethod == "GET":
nsmweb.getApps(webPort,victim,uri,https,verb,requestHeaders)
elif httpMethod == "POST":
nsmweb.postApps(victim,webPort,uri,https,verb,postData,requestHeaders)
else:
raw_input("Options not set! Check host and URI path. Press enter to continue...")
elif select == "4":
scanResult = nsmscan.massScan(platform)
if scanResult != None:
optionSet[0] = True
victim = scanResult[1]
elif select == "5":
platSel()
elif select == "x":
sys.exit()
else:
raw_input("Invalid selection. Press enter to continue.")
def build_request_headers(reqHeadersIn):
requestHeaders = {}
reqHeadersArray = reqHeadersIn.split(",")
headerNames = reqHeadersArray[0::2]
headerValues = reqHeadersArray[1::2]
requestHeaders = dict(zip(headerNames, headerValues))
return requestHeaders
def build_post_data(postDataIn):
pdArray = postDataIn.split(",")
paramNames = pdArray[0::2]
paramValues = pdArray[1::2]
postData = dict(zip(paramNames,paramValues))
return postData
def attack(args):
platform = args.platform
victim = args.victim
webPort = args.webPort
dbPort = args.dbPort
myIP = args.myIP
myPort = args.myPort
uri = args.uri
https = args.https
verb = args.verb
httpMethod = args.httpMethod
requestHeaders = build_request_headers(args.requestHeaders)
postData = build_post_data(args.postData)
if args.attack == 1:
if platform == "MongoDB":
nsmmongo.netAttacks(victim, dbPort, myIP, myPort, args)
elif platform == "CouchDB":
nsmcouch.netAttacks(victim, dbPort, myIP, args)
elif args.attack == 2:
if httpMethod == "GET":
nsmweb.getApps(webPort,victim,uri,https,verb,requestHeaders, args)
elif httpMethod == "POST":
nsmweb.postApps(victim,webPort,uri,https,verb,postData,requestHeaders, args)
elif args.attack == 3:
scanResult = nsmscan.massScan(platform)
if scanResult != None:
optionSet[0] = True
victim = scanResult[1]
def platSel():
global platform
global dbPort
select = True
print "\n"
while select:
print "1-MongoDB"
print "2-CouchDB"
pSel = raw_input("Select a platform: ")
if pSel == "1":
platform = "MongoDB"
dbPort = 27017
return
elif pSel == "2":
platform = "CouchDB"
dbPort = 5984
return
else:
raw_input("Invalid selection. Press enter to continue.")
def options():
global victim
global webPort
global uri
global https
global platform
global httpMethod
global postData
global myIP
global myPort
global verb
global mmSelect
global dbPort
global requestHeaders
requestHeaders = {}
optSelect = True
# Set default value if needed
if optionSet[0] == False:
global victim
victim = "Not Set"
if optionSet[1] == False:
global webPort
webPort = 80
optionSet[1] = True
if optionSet[2] == False:
global uri
uri = "Not Set"
if optionSet[3] == False:
global httpMethod
httpMethod = "GET"
if optionSet[4] == False:
global myIP
myIP = "Not Set"
if optionSet[5] == False:
global myPort
myPort = "Not Set"
if optionSet[6] == False:
verb = "OFF"
optSelect = True
if optionSet[8] == False:
https = "OFF"
optSelect = True
while optSelect:
print "\n\n"
print "Options"
print "1-Set target host/IP (Current: " + str(victim) + ")"
print "2-Set web app port (Current: " + str(webPort) + ")"
print "3-Set App Path (Current: " + str(uri) + ")"
print "4-Toggle HTTPS (Current: " + str(https) + ")"
print "5-Set " + platform + " Port (Current : " + str(dbPort) + ")"
print "6-Set HTTP Request Method (GET/POST) (Current: " + httpMethod + ")"
print "7-Set my local " + platform + "/Shell IP (Current: " + str(myIP) + ")"
print "8-Set shell listener port (Current: " + str(myPort) + ")"
print "9-Toggle Verbose Mode: (Current: " + str(verb) + ")"
print "0-Load options file"
print "a-Load options from saved Burp request"
print "b-Save options file"
print "h-Set headers"
print "x-Back to main menu"
select = raw_input("Select an option: ")
if select == "1":
# Unset the boolean if it's set since we're setting it again.
optionSet[0] = False
ipLen = False
while optionSet[0] == False:
goodDigits = True
notDNS = True
victim = raw_input("Enter the host IP/DNS name: ")
# make sure we got a valid IP
octets = victim.split(".")
if len(octets) != 4:
# Treat this as a DNS name
optionSet[0] = True
notDNS = False
else:
# If len(octets) != 4 is executed the block of code below is also run, but it is not necessary
# If the format of the IP is good, check and make sure the octets are all within acceptable ranges.
for item in octets:
try:
if int(item) < 0 or int(item) > 255:
print "Bad octet in IP address."
goodDigits = False
except NoSQLMapException("[!] Must be a DNS name."):
#Must be a DNS name (for now)
notDNS = False
#If everything checks out set the IP and break the loop
if goodDigits == True or notDNS == False:
print "\nTarget set to " + victim + "\n"
optionSet[0] = True
elif select == "2":
webPort = raw_input("Enter the HTTP port for web apps: ")
print "\nHTTP port set to " + webPort + "\n"
optionSet[1] = True
elif select == "3":
uri = raw_input("Enter URI Path (Press enter for no URI): ")
#Ensuring the URI path always starts with / and accepts null values
if len(uri) == 0:
uri = "Not Set"
print "\nURI Not Set." "\n"
optionSet[2] = False
elif uri[0] != "/":
uri = "/" + uri
print "\nURI Path set to " + uri + "\n"
optionSet[2] = True
elif select == "4":
if https == "OFF":
print "HTTPS enabled."
https = "ON"
optionSet[8] = True
elif https == "ON":
print "HTTPS disabled."
https = "OFF"
optionSet[8] = True
elif select == "5":
dbPort = int(raw_input("Enter target MongoDB port: "))
print "\nTarget Mongo Port set to " + str(dbPort) + "\n"
optionSet[7] = True
elif select == "6":
httpMethod = True
while httpMethod == True:
print "1-Send request as a GET"
print "2-Send request as a POST"
httpMethod = raw_input("Select an option: ")
if httpMethod == "1":
httpMethod = "GET"
print "GET request set"
requestHeaders = {}
optionSet[3] = True
elif httpMethod == "2":
print "POST request set"
optionSet[3] = True
postDataIn = raw_input("Enter POST data in a comma separated list (i.e. param name 1,value1,param name 2,value2)\n")
postData = build_post_data(postDataIn)
httpMethod = "POST"
else:
print "Invalid selection"
elif select == "7":
# Unset the setting boolean since we're setting it again.
optionSet[4] = False
while optionSet[4] == False:
goodLen = False
goodDigits = True
# Every time when user input Invalid IP, goodLen and goodDigits should be reset. If this is not done, there will be a bug
# For example enter 10.0.0.1234 first and the goodLen will be set to True and goodDigits will be set to False
# Second step enter 10.0.123, because goodLen has already been set to True, this invalid IP will be put in myIP variables
myIP = raw_input("Enter the host IP for my " + platform +"/Shells: ")
# make sure we got a valid IP
octets = myIP.split(".")
# If there aren't 4 octets, toss an error.
if len(octets) != 4:
print "Invalid IP length."
else:
goodLen = True
if goodLen == True:
# If the format of the IP is good, check and make sure the octets are all within acceptable ranges.
for item in octets:
if int(item) < 0 or int(item) > 255:
print "Bad octet in IP address."
goodDigits = False
# else:
# goodDigits = True
# Default value of goodDigits should be set to True
# for example 12.12345.12.12
# If everything checks out set the IP and break the loop
if goodLen == True and goodDigits == True:
print "\nShell/DB listener set to " + myIP + "\n"
optionSet[4] = True
elif select == "8":
myPort = raw_input("Enter TCP listener for shells: ")
print "Shell TCP listener set to " + myPort + "\n"
optionSet[5] = True
elif select == "9":
if verb == "OFF":
print "Verbose output enabled."
verb = "ON"
optionSet[6] = True
elif verb == "ON":
print "Verbose output disabled."
verb = "OFF"
optionSet[6] = True
elif select == "0":
loadPath = raw_input("Enter file name to load: ")
csvOpt = []
try:
with open(loadPath,"r") as fo:
for line in fo:
csvOpt.append(line.rstrip())
except IOError as e:
print "I/O error({0}): {1}".format(e.errno, e.strerror)
raw_input("error reading file. Press enter to continue...")
return
optList = csvOpt[0].split(",")
victim = optList[0]
webPort = optList[1]
uri = optList[2]
httpMethod = optList[3]
myIP = optList[4]
myPort = optList[5]
verb = optList[6]
https = optList[7]
# saved headers position will depend of the request verb
headersPos= 1
if httpMethod == "POST":
postData = ast.literal_eval(csvOpt[1])
headersPos = 2
requestHeaders = ast.literal_eval(csvOpt[headersPos])
# Set option checking array based on what was loaded
x = 0
for item in optList:
if item != "Not Set":
optionSet[x] = True
x += 1
elif select == "a":
loadPath = raw_input("Enter path to Burp request file: ")
reqData = []
try:
with open(loadPath,"r") as fo:
for line in fo:
reqData.append(line.rstrip())
except IOError as e:
print "I/O error({0}): {1}".format(e.errno, e.strerror)
raw_input("error reading file. Press enter to continue...")
return
methodPath = reqData[0].split(" ")
if methodPath[0] == "GET":
httpMethod = "GET"
elif methodPath[0] == "POST":
paramNames = []
paramValues = []
httpMethod = "POST"
postData = reqData[len(reqData)-1]
# split the POST parameters up into individual items
paramsNvalues = postData.split("&")
for item in paramsNvalues:
tempList = item.split("=")
paramNames.append(tempList[0])
paramValues.append(tempList[1])
postData = dict(zip(paramNames,paramValues))
else:
print "unsupported method in request header."
# load the HTTP headers
for line in reqData[1:]:
print(line)
if not line.strip(): break
header = line.split(": ");
requestHeaders[header[0]] = header[1].strip()
victim = reqData[1].split( " ")[1]
optionSet[0] = True
uri = methodPath[1]
optionSet[2] = True
elif select == "b":
savePath = raw_input("Enter file name to save: ")
try:
with open(savePath, "wb") as fo:
fo.write(str(victim) + "," + str(webPort) + "," + str(uri) + "," + str(httpMethod) + "," + str(myIP) + "," + str(myPort) + "," + verb + "," + https)
if httpMethod == "POST":
fo.write(",\n"+ str(postData))
fo.write(",\n" + str(requestHeaders) )
print "Options file saved!"
except IOError:
print "Couldn't save options file."
elif select == "h":
reqHeadersIn = raw_input("Enter HTTP Request Header data in a comma separated list (i.e. header name 1,value1,header name 2,value2)\n")
requestHeaders = build_request_headers(reqHeadersIn)
elif select == "x":
return
def build_parser():
parser = argparse.ArgumentParser()
parser.add_argument("--attack", help="1 = NoSQL DB Access Attacks, 2 = NoSQL Web App attacks, 3 - Scan for Anonymous platform Access", type=int, choices=[1,2,3])
parser.add_argument("--platform", help="Platform to attack", choices=["MongoDB", "CouchDB"], default="MongoDB")
parser.add_argument("--victim", help="Set target host/IP (ex: localhost or 127.0.0.1)")
parser.add_argument("--dbPort", help="Set shell listener port", type=int)
parser.add_argument("--myIP",help="Set my local platform/Shell IP")
parser.add_argument("--myPort",help="Set my local platform/Shell port", type=int)
parser.add_argument("--webPort", help="Set web app port ([1 - 65535])", type=int)
parser.add_argument("--uri", help="Set App Path. For example '/a-path/'. Final URI will be [https option]://[victim option]:[webPort option]/[uri option]")
parser.add_argument("--httpMethod", help="Set HTTP Request Method", choices=["GET","POST"], default="GET")
parser.add_argument("--https", help="Toggle HTTPS", choices=["ON", "OFF"], default="OFF")
parser.add_argument("--verb", help="Toggle Verbose Mode", choices=["ON", "OFF"], default="OFF")
parser.add_argument("--postData", help="Enter POST data in a comma separated list (i.e. param name 1,value1,param name 2,value2)", default="")
parser.add_argument("--requestHeaders", help="Request headers in a comma separated list (i.e. param name 1,value1,param name 2,value2)", default="")
modules = [nsmcouch, nsmmongo, nsmscan, nsmweb]
for module in modules:
group = parser.add_argument_group(module.__name__)
for arg in module.args():
group.add_argument(arg[0], help=arg[1])
return parser
def signal_handler(signal, frame):
print "\n"
print "CTRL+C detected. Exiting."
sys.exit()
if __name__ == '__main__':
parser = build_parser()
args = parser.parse_args()
main(args)