-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathnmaptomongo.py
executable file
·355 lines (271 loc) · 9.72 KB
/
nmaptomongo.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
#!/usr/bin/env python3
# -*- coding: utf8 -*-
import os
import argparse
import xml.dom.minidom
import pymongo
'''
Inspired from:
https://github.com/argp/nmapdb/blob/master/nmapdb.py
'''
def print_banner():
banner = '-------------------\n' \
'~ Nmap to MongoDB ~\n' \
'-------------------'
print(banner)
def parse_args():
parser = argparse.ArgumentParser(description='Nmap to MongoDB')
files_group = parser.add_mutually_exclusive_group(required=True)
files_group.add_argument('-f', '--file', type=str, help='Nmap XML report')
files_group.add_argument('-F', '--folder', type=str, help='Nmap XML folder reports')
parser.add_argument('-d', '--drop', action='store_true', help='Drop existing database and create new')
parser.add_argument('--host', type=str, default='localhost', help='MongoDB host')
parser.add_argument('--port', type=int, default=27017, help='MongoDB port')
parser.add_argument('--database', type=str, default='Nmap', help='MongoDB database')
args = parser.parse_args()
return args
def mongodb_connect(host, port, database):
try:
client = pymongo.MongoClient(host, port)
client.server_info()
db = client[database]
return db
except Exception as e:
print(e)
exit(1)
def mongodb_dropdatabase(host, port, database):
try:
client = pymongo.MongoClient(host, port)
client.server_info()
client.drop_database(database)
except Exception as e:
print(e)
exit(1)
def is_nmap_report(file):
with open(file) as f:
for line in f:
if line.strip() == '<!DOCTYPE nmaprun>':
return True
return False
def is_nmap_report_tree_close_tag_exist(file):
close_tag = '</nmaprun>'
with open(file) as f:
if close_tag in f.readlines()[-1]:
return True
return False
def add_nmap_report_tree_close_tag(file):
close_tag = '</nmaprun>'
with open(file, 'a') as f:
f.write(close_tag)
def parse_scans(nmap_xml_report, db):
collection = db['Scans']
try:
# parsing
nmaprun = nmap_xml_report.getElementsByTagName("nmaprun")[0]
args = nmaprun.getAttribute("args")
starttimestamp = ""
starttime = ""
try:
starttimestamp = nmaprun.getAttribute("start")
starttime = nmaprun.getAttribute("startstr")
except:
pass
type = ""
protocol = ""
numservices = ""
services = ""
try:
scaninfo = nmaprun.getElementsByTagName("scaninfo")[0]
type = scaninfo.getAttribute("type")
protocol = scaninfo.getAttribute("protocol")
numservices = scaninfo.getAttribute("numservices")
services = scaninfo.getAttribute("services")
except:
pass
endtime = ""
endtimestamp = ""
try:
runstats = nmaprun.getElementsByTagName("runstats")[0]
finished = runstats.getElementsByTagName("finished")[0]
endtime = finished.getAttribute("startstr")
endtimestamp = finished.getAttribute("time")
except:
pass
scan = {
'command': args,
'starttime': starttime,
'endtime': endtime,
'starttimestamp': starttimestamp,
'endtimestamp': endtimestamp,
'type': type,
'protocol': protocol,
'numservices': numservices,
'services': services,
}
# mongodb upsert
collection.update_one({'command': scan['command'], 'starttimestamp': scan['starttimestamp'], 'endtimestamp': scan['endtimestamp']}, {'$set': scan}, upsert=True)
except:
pass
def parse_servers(nmap_xml_report, db):
collection = db['Servers']
for host in nmap_xml_report.getElementsByTagName("host"):
# parsing
ip = ""
protocol = ""
try:
address = host.getElementsByTagName("address")[0]
ip = address.getAttribute("addr")
protocol = address.getAttribute("addrtype")
except:
continue
hostname = ""
try:
hname = host.getElementsByTagName("hostname")[0]
hostname = hname.getAttribute("name")
except:
pass
status = ""
server_state = ""
try:
status = host.getElementsByTagName("status")[0]
server_state = status.getAttribute("state")
except:
pass
ports_open = 0
ports_filtered = 0
ports_closed = 0
for port in host.getElementsByTagName("port"):
portid = ""
try:
portid = port.getAttribute("portid")
except:
continue
try:
state = port.getElementsByTagName("state")[0]
port_state = state.getAttribute("state")
if port_state == 'open':
ports_open += 1
elif port_state == 'filtered':
ports_filtered += 1
elif port_state == 'closed':
ports_closed += 1
except:
pass
server = {
'ip': ip,
'version': protocol,
'hostname': hostname,
'state': server_state,
'ports_open': ports_open,
'ports_filtered': ports_filtered,
'ports_closed': ports_closed,
}
# mongodb upsert
collection.update_one({'ip': server['ip']}, {'$set': server}, upsert=True)
def parse_services(nmap_xml_report, db):
collection = db['Services']
for host in nmap_xml_report.getElementsByTagName("host"):
# parsing
ip = ""
try:
address = host.getElementsByTagName("address")[0]
ip = address.getAttribute("addr")
except:
continue
for port in host.getElementsByTagName("port"):
protocol = ""
try:
portid = int(port.getAttribute("portid"))
protocol = port.getAttribute("protocol")
except:
continue
port_state = ""
try:
state = port.getElementsByTagName("state")[0]
port_state = state.getAttribute("state")
except:
pass
name = ""
ostype = ""
hostname = ""
product = ""
version = ""
tunnel = ""
extrainfo = ""
try:
service = port.getElementsByTagName("service")[0]
name = service.getAttribute("name")
ostype = service.getAttribute("ostype")
hostname = service.getAttribute("hostname")
product = service.getAttribute("product")
version = service.getAttribute("version")
tunnel = service.getAttribute("tunnel")
extrainfo = service.getAttribute("extrainfo")
except:
pass
service = {
'ip': ip,
'port': portid,
'state': port_state,
'service': name,
'hostname': hostname,
'ostype': ostype,
'product': product,
'version': version,
'tunnel': tunnel,
'extrainfo': extrainfo,
}
# mongodb upsert
collection.update_one({'ip': service['ip'], 'port': service['port']}, {'$set': service}, upsert=True)
if __name__ == '__main__':
args = parse_args()
print_banner()
# get reports
reports = []
if args.file:
reports.append(args.file)
elif args.folder:
for file in os.listdir(args.folder):
if os.path.isfile(os.path.join(args.folder, file)):
if is_nmap_report(os.path.join(args.folder, file)):
reports.append(os.path.join(args.folder, file))
# drop database if requested
if args.drop:
ans = input('\nDrop database \"{}\" [y/N]: '.format(args.database))
if ans.lower() == 'y':
mongodb_dropdatabase(args.host, args.port, args.database)
print('Database \"{}\" dropped'.format(args.database))
db = mongodb_connect(args.host, args.port, args.database)
# check if the nmap xml reports close tag are present
reports_tree_not_closed = []
for report in reports:
if not is_nmap_report_tree_close_tag_exist(report):
reports_tree_not_closed.append(report)
if len(reports_tree_not_closed) != 0:
print('\nXML nmap report not properly closed for report(s):')
for report in reports_tree_not_closed:
print(' - {}'.format(report))
ans = input('\nDo you want to close the XML tree of those reports [y/N]: '.format(args.database))
if ans.lower() == 'y':
for report in reports_tree_not_closed:
add_nmap_report_tree_close_tag(report)
# parse reports
parsing_error_files = []
print('\nFile(s) parsed:')
for report in reports:
try:
nmap_xml_report = xml.dom.minidom.parse(report)
except Exception as e:
print(e)
try:
parse_scans(nmap_xml_report, db)
parse_servers(nmap_xml_report, db)
parse_services(nmap_xml_report, db)
print(' - {}'.format(report))
except:
parsing_error_files.append(report)
if len(parsing_error_files) != 0:
print('\nUnable to parse file(s):')
for report in parsing_error_files:
print(' - {}'.format(report))
print()