-
Notifications
You must be signed in to change notification settings - Fork 262
/
views.py
830 lines (692 loc) · 30.2 KB
/
views.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
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
from django.shortcuts import render
from django.http import HttpResponse
import xmltodict, json, html, os, hashlib, re, urllib.parse, base64
from collections import OrderedDict
from nmapreport.functions import *
def login(request):
r = {}
if request.method == "POST":
if(re.search('^[a-zA-Z0-9]+$', request.POST['token'])):
if token_check(request.POST['token']) is True:
request.session['auth'] = True
r['auth'] = 'ok'
return HttpResponse(json.dumps(r), content_type="application/json")
return render(request, 'nmapreport/nmap_auth.html', r)
def setscanfile(request, scanfile):
xmlfiles = os.listdir('/opt/xml')
for i in xmlfiles:
if i == scanfile:
request.session['scanfile'] = i
break
if scanfile == 'unset':
if 'scanfile' in request.session:
del(request.session['scanfile'])
return render(request, 'nmapreport/nmap_hostdetails.html', { 'js': '<script> location.href="/"; </script>' })
def port(request, port):
return render(request, 'nmapreport/index.html', { 'out': '', 'table': '', 'scaninfo': '', 'scandetails': '', 'trhost': '' })
def details(request, address):
r = {}
if 'auth' not in request.session:
return render(request, 'nmapreport/nmap_auth.html', r)
else:
r['auth'] = True
oo = xmltodict.parse(open('/opt/xml/'+request.session['scanfile'], 'r').read())
r['out2'] = json.dumps(oo['nmaprun'], indent=4)
o = json.loads(r['out2'])
r['trhost'] = ''
v,e,z,h = '','','',''
pc,po,pf=0,0,0
scanmd5 = hashlib.md5(str(request.session['scanfile']).encode('utf-8')).hexdigest()
addressmd5 = hashlib.md5(str(address).encode('utf-8')).hexdigest()
# collect all labels in labelhost dict
labelhost = {}
labelfiles = os.listdir('/opt/notes')
for lf in labelfiles:
m = re.match('^('+scanmd5+')_([a-z0-9]{32,32})\.host\.label$', lf)
if m is not None:
if m.group(1) not in labelhost:
labelhost[m.group(1)] = {}
labelhost[m.group(1)][m.group(2)] = open('/opt/notes/'+lf, 'r').read()
# collect all notes in noteshost dict
noteshost = {}
notesfiles = os.listdir('/opt/notes')
for nf in notesfiles:
m = re.match('^('+scanmd5+')_([a-z0-9]{32,32})\.notes$', nf)
if m is not None:
if m.group(1) not in noteshost:
noteshost[m.group(1)] = {}
noteshost[m.group(1)][m.group(2)] = open('/opt/notes/'+nf, 'r').read()
# collect all cve in cvehost dict
cvehost = get_cve(scanmd5)
r['trhead'] = '<tr><th>Port</th><th style="width:300px;">Product / Version</th><th>Extra Info</th><th> </th></tr>'
for ik in o['host']:
pel=0
# this fix single host report
if type(ik) is dict:
i = ik
else:
i = o['host']
if 'ports' not in i:
continue
if '@addr' in i['address']:
saddress = i['address']['@addr']
elif type(i['address']) is list:
for ai in i['address']:
if ai['@addrtype'] == 'ipv4':
saddress = ai['@addr']
if str(saddress) == address:
hostname = ''
if 'hostnames' in i and type(i['hostnames']) is dict:
# hostname = json.dumps(i['hostnames'])
if 'hostname' in i['hostnames']:
hostname += '<br>'
if type(i['hostnames']['hostname']) is list:
for hi in i['hostnames']['hostname']:
hostname += '<span class="small grey-text"><b>'+hi['@type']+':</b> '+hi['@name']+'</span><br>'
else:
hostname += '<span class="small grey-text"><b>'+i['hostnames']['hostname']['@type']+':</b> '+i['hostnames']['hostname']['@name']+'</span><br>'
r['address'] = html.escape(str(saddress))
r['hostname'] = hostname
scantitle = request.session['scanfile'].replace('.xml','').replace('_',' ')
if re.search('^webmapsched\_[0-9\.]+', request.session['scanfile']):
m = re.search('^webmapsched\_[0-9\.]+\_(.+)', request.session['scanfile'])
scantitle = m.group(1).replace('.xml','').replace('_',' ')
r['scanfile'] = scantitle
labelout = '<span id="hostlabel"></span>'
if scanmd5 in labelhost:
if addressmd5 in labelhost[scanmd5]:
labelcolor = labelToColor(labelhost[scanmd5][addressmd5])
labelmargin = labelToMargin(labelhost[scanmd5][addressmd5])
labelout = '<span id="hostlabel" style="margin-left:60px;margin-top:-24px;" class="rightlabel '+labelcolor+'">'+html.escape(labelhost[scanmd5][addressmd5])+'</span>'
r['label'] = html.escape(labelhost[scanmd5][addressmd5])
r['labelcolor'] = labelcolor
rmdupl = {}
r['tr'] = {}
for pobj in i['ports']['port']:
if type(pobj) is dict:
p = pobj
else:
p = i['ports']['port']
if p['@portid'] in rmdupl:
continue
rmdupl[p['@portid']] = 1
if p['state']['@state'] == 'closed':
pc = (pc + 1)
elif p['state']['@state'] == 'open':
po = (po + 1)
elif p['state']['@state'] == 'filtered':
pf = (pf + 1)
pel = (pel + 1)
oshtml = ''
if 'service' in p:
if '@ostype' in p['service']:
oshtml = '<div style="font-family:monospace;padding:6px;margin:6px;border-left:solid #666 1px;"><sup style="border-bottom:solid #ccc 1px;">Operating System</sup><br>'+html.escape(p['service']['@ostype'])+'</div>'
so = ''
if 'script' in p:
if '@id' in p['script']:
if p['script']['@id'] != 'fingerprint-strings':
so += '<div style="word-wrap: break-word;word-break: break-all;padding:6px;margin-left:6px;border-left:solid #666 1px;max-width:300px;font-size:12px;color:#ccc;font-family:monospace;"><sup style="color:#999;border-bottom:solid #999 1px;">script output</sup><br><b>'+html.escape(p['script']['@id'])+'</b> '+html.escape(p['script']['@output'])+'</div>'
else:
for sosc in p['script']:
if '@id' in sosc:
if sosc['@id'] != 'fingerprint-strings':
so += '<div style="word-wrap: break-word;word-break: break-all;padding:6px;margin:6px;border-left:solid #666 1px;max-width:300px;font-size:12px;color:#ccc;font-family:monospace;"><sup style="color:#999;border-bottom:solid #999 1px;">script output</sup><br><b>'+html.escape(sosc['@id'])+'</b> '+html.escape(sosc['@output'])+'</div>'
v,z,e = '','','<i class="grey-text">N/A</i>'
if p['state']['@state'] == 'open':
if 'service' in p:
if '@version' in p['service']:
v = p['service']['@version']
else:
v = '<i class="grey-text">No Version</i>'
if '@product' in p['service']:
z = p['service']['@product']
else:
z = '<i class="grey-text">No Product</i>'
if '@extrainfo' in p['service']:
e = p['service']['@extrainfo']
cpe = ''
if 'cpe' in p['service']:
if type(p['service']['cpe']) is list:
for cpei in p['service']['cpe']:
cpe += '<div class="grey-text" style="font-family:monospace;font-size:12px;">'+html.escape(cpei)+'</div>'
else:
cpe = '<div class="grey-text" style="font-family:monospace;font-size:12px;">'+html.escape(p['service']['cpe'])+'</div>'
servicename = p['service']['@name']
else:
servicename = ''
r['tr'][p['@portid']] = {
'service': servicename,
'protocol': p['@protocol'],
'portid': p['@portid'],
'product': z,
'version': v,
'cpe':cpe,
'state': p['state']['@state'],
'reason': p['state']['@reason'],
'extrainfo': e,
'pel': str(pel)
}
r['trhost'] += '<tr><td style="vertical-align:top;">'+\
'<span style="color:#999;font-size:12px;">'+servicename+'</span><br>'+\
'<span class="new badge blue" data-badge-caption="">'+p['@protocol']+' / '+p['@portid']+'</span>'+\
'</td>'+\
'<td>'+z+' / '+v+'<br><span style="font-size:12px;color:#999;">State: '+p['state']['@state']+'<br>Reason: '+p['state']['@reason']+'</span></td>'+\
'<td style="vertical-align:top">'+e+'<br>'+cpe+'</td>'+\
'<td><ul id="dropdown'+str(pel)+'" class="dropdown-content" style="min-width:300px;">'+\
' <li><a href="#!" class="btncpy" data-clipboard-text="curl -v -A \'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1\' -k \'http://'+html.escape(address)+':'+html.escape(p['@portid'])+'\'">Copy as curl command</a></li>'+\
' <li><a href="#!" class="btncpy" data-clipboard-text="nikto -host \'http://'+html.escape(address)+':'+html.escape(p['@portid'])+'\'">Copy as nikto command</a></li>'+\
' <li><a href="#!" class="btncpy" data-clipboard-text="telnet '+html.escape(address)+' '+html.escape(p['@portid'])+'">Copy as telnet command</a></li>'+\
'</ul><a class="dropdown-trigger btn blue right" href="#!" data-target="dropdown'+str(pel)+'"><i class="material-icons">arrow_drop_down</i></a> '+\
'<button onclick="javascript:apiPortDetails(\''+html.escape(address)+'\',\''+html.escape(p['@portid'])+'\');" class="btn blue right"><i class="material-icons">receipt</i></button></td>'+\
'</tr>'
elif p['state']['@state'] == 'filtered':
if 'service' in p:
servicename = p['service']['@name']
else:
servicename = ''
r['tr'][p['@portid']] = {
'service': servicename,
'protocol': p['@protocol'],
'portid': p['@portid'],
'state': p['state']['@state'],
'reason': p['state']['@reason'],
'pel': str(pel)
}
r['trhost'] += '<tr><td><span class="new badge grey" data-badge-caption="">'+p['@protocol']+' / '+p['@portid']+'</span><br>'+\
'<span style="color:#999;font-size:12px;">'+servicename+'</span></td>'+\
'<td colspan="2" style="color:#999;font-size:12px;">State: filtered<br>Reason: '+p['state']['@reason']+'</td>'+\
'<td><button onclick="javascript:apiPortDetails(\''+html.escape(address)+'\',\''+html.escape(p['@portid'])+'\');" class="btn blue right"><i class="material-icons">receipt</i></button></td></tr>'
else:
if 'service' in p:
servicename = p['service']['@name']
else:
servicename = ''
r['tr'][p['@portid']] = {
'service': servicename,
'protocol': p['@protocol'],
'portid': p['@portid'],
'state': p['state']['@state'],
'reason': p['state']['@reason'],
'pel': str(pel)
}
r['trhost'] += '<tr><td><span class="new badge grey" data-badge-caption="">'+p['@protocol']+' / '+p['@portid']+'</span><br>'+\
'<span style="color:#999;font-size:12px;">'+servicename+'</span></td>'+\
'<td colspan="2" style="color:#999;font-size:12px;">State: '+p['state']['@state']+'<br>Reason: '+p['state']['@reason']+'</td>'+\
'<td><button onclick="javascript:apiPortDetails(\''+html.escape(address)+'\',\''+html.escape(p['@portid'])+'\');" class="btn blue right"><i class="material-icons">receipt</i></button></td></tr>'
# this fix single host report
if type(ik) is not dict:
break;
r['table'] = ''
notesout,notesb64,removenotes = '','',''
if scanmd5 in noteshost:
if addressmd5 in noteshost[scanmd5]:
notesb64 = noteshost[scanmd5][addressmd5]
r['table'] += '<div class="card" style="background-color:#3e3e3e;">'+\
' <div class="card-content"><h5>Notes</h5>'+\
' '+base64.b64decode(urllib.parse.unquote(notesb64)).decode('ascii')+\
' </div>'+\
'</div>'
r['notes'] = base64.b64decode(urllib.parse.unquote(notesb64)).decode('ascii')
cveout = ''
if scanmd5 in cvehost:
if addressmd5 in cvehost[scanmd5]:
cvejson = json.loads(cvehost[scanmd5][addressmd5])
cveids = {}
for i in cvejson:
if type(i) is list:
listcve = i
#cveout += 'list<hr>'
elif type(i) is dict:
listcve = [i]
#cveout += 'dict<hr>'
#continue
for cveobj in listcve:
cverefout = ''
for cveref in cveobj['references']:
cverefout += '<a href="'+cveref+'">'+cveref+'</a><br>'
cveexdbout = ''
if 'exploit-db' in cveobj:
cveexdbout = '<br><div class="small" style="line-height:20px;"><b>Exploit DB:</b><br>'
for cveexdb in cveobj['exploit-db']:
if 'title' in cveexdb:
cveexdbout += '<a href="'+cveexdb['source']+'">'+html.escape(cveexdb['title'])+'</a><br>'
cveexdbout += '</div>'
cveout += '<div id="'+html.escape(cveobj['id'])+'" style="line-height:28px;padding:10px;border-bottom:solid #666 1px;margin-top:10px;">'+\
' <span class="label red">'+html.escape(cveobj['id'])+'</span> '+html.escape(cveobj['summary'])+'<br><br>'+\
' <div class="small" style="line-height:20px;"><b>References:</b><br>'+cverefout+'</div>'+\
cveexdbout+\
'</div>'
cveids[cveobj['id']] = cveobj['id']
r['cveids'] = cveids
r['cvelist'] = cveout
r['js'] = '<script> '+\
'$(document).ready(function() { '+\
' $("#scantitle").html("'+html.escape(request.session['scanfile'])+'");'+\
' var clipboard = new ClipboardJS(".btncpy"); '+\
' clipboard.on("success", function(e) { '+\
' M.toast({html: "Copied to clipboard"}); '+\
' }); '+\
' $(".dropdown-trigger").dropdown(); '+\
' $("#detailspo").html(\'<center><h4><i class="fas fa-door-open green-text"></i> '+str(po)+'</h4><span class="small grey-text">OPEN PORTS</span></center>\');'+\
' $("#detailspc").html(\'<center><h4><i class="fas fa-door-closed red-text"></i> '+str(pc)+'</h4><span class="small grey-text">CLOSED PORTS</span></center>\');'+\
' $("#detailspf").html(\'<center><h4><i class="fas fa-filter grey-text"></i> '+str(pf)+'</h4><span class="small grey-text">FILTERED PORTS</span></center>\');'+\
'}); '+\
'</script>'
return render(request, 'nmapreport/nmap_portdetails.html', r)
def index(request, filterservice="", filterportid=""):
r = {}
if 'auth' not in request.session:
return render(request, 'nmapreport/nmap_auth.html', r)
else:
r['auth'] = True
gitcmd = os.popen('cd /opt/nmapdashboard/nmapreport && git rev-parse --abbrev-ref HEAD')
r['webmapver'] = 'WebMap '+gitcmd.read()+'<br>This project is currently a beta, please <b>DO NOT</b> expose WebMap to internet.<br>This version is <b>NOT</b> production ready.'
if 'scanfile' in request.session:
oo = xmltodict.parse(open('/opt/xml/'+request.session['scanfile'], 'r').read())
r['out2'] = json.dumps(oo['nmaprun'], indent=4)
o = json.loads(r['out2'])
else:
# no file selected
xmlfiles = os.listdir('/opt/xml')
r['tr'] = {}
r['stats'] = { 'po':0, 'pc':0, 'pf':0}
xmlfilescount = 0
for i in xmlfiles:
if re.search('\.xml$', i) is None:
continue
#portstats = {}
xmlfilescount = (xmlfilescount + 1)
try:
oo = xmltodict.parse(open('/opt/xml/'+i, 'r').read())
except:
r['tr'][i] = {'filename':html.escape(i), 'start': 0, 'startstr': 'Incomplete / Invalid', 'hostnum':0, 'href':'#!', 'portstats':{'po':0,'pc':0,'pf':0}}
continue
r['out2'] = json.dumps(oo['nmaprun'], indent=4)
o = json.loads(r['out2'])
if 'host' in o:
if type(o['host']) is not dict:
hostnum = str(len(o['host']))
else:
hostnum = '1'
else:
hostnum = '0'
if hostnum != '0':
viewhref = '/setscanfile/'+html.escape(i)
else:
viewhref = '#!'
filename = i
if re.search('^webmapsched\_[0-9\.]+',i):
m = re.search('^webmapsched\_([0-9\.]+)\_(.+)',i)
filename = '<i class="fas fa-calendar-alt grey-text"></i> '+html.escape(m.group(2))
portstats = nmap_ports_stats(i)
r['stats']['po'] = (r['stats']['po'] + portstats['po'])
r['stats']['pc'] = (r['stats']['pc'] + portstats['pc'])
r['stats']['pf'] = (r['stats']['pf'] + portstats['pf'])
r['tr'][o['@start']] = {
'filename':filename,
'start': o['@start'],
'startstr': html.escape(o['@startstr']),
'hostnum':hostnum,
'href':viewhref,
'portstats':portstats
}
r['tr'] = OrderedDict(sorted(r['tr'].items()))
r['stats']['xmlcount'] = xmlfilescount
return render(request, 'nmapreport/nmap_xmlfiles.html', r)
scanmd5 = hashlib.md5(str(request.session['scanfile']).encode('utf-8')).hexdigest()
r['scanfile'] = html.escape(str(request.session['scanfile']))
r['scanmd5'] = scanmd5
# collect all labels in labelhost dict
labelhost = {}
labelfiles = os.listdir('/opt/notes')
for lf in labelfiles:
m = re.match('^('+scanmd5+')_([a-z0-9]{32,32})\.host\.label$', lf)
if m is not None:
if m.group(1) not in labelhost:
labelhost[m.group(1)] = {}
labelhost[m.group(1)][m.group(2)] = open('/opt/notes/'+lf, 'r').read()
# collect all notes in noteshost dict
noteshost = {}
notesfiles = os.listdir('/opt/notes')
for nf in notesfiles:
m = re.match('^('+scanmd5+')_([a-z0-9]{32,32})\.notes$', nf)
if m is not None:
if m.group(1) not in noteshost:
noteshost[m.group(1)] = {}
noteshost[m.group(1)][m.group(2)] = open('/opt/notes/'+nf, 'r').read()
# collect all cve in cvehost dict
cvehost = get_cve(scanmd5)
tableout = ''
hostsup = 0
hostindex = 1
ports = { 'open': 0, 'closed': 0, 'filtered': 0 }
allostypelist, sscount, picount, cpe = {}, {}, {}, {}
r['tr'] = {}
r['stats'] = {}
for ik in o['host']:
# this fix single host report
if type(ik) is dict:
i = ik
else:
i = o['host']
hostname = ''
if 'hostnames' in i and type(i['hostnames']) is dict:
# hostname = json.dumps(i['hostnames'])
if 'hostname' in i['hostnames']:
#hostname += '<br>'
if type(i['hostnames']['hostname']) is list:
for hi in i['hostnames']['hostname']:
hostname += '<div class="small grey-text"><b>'+hi['@type']+':</b> '+hi['@name']+'</div>'
else:
hostname += '<div class="small grey-text"><b>'+i['hostnames']['hostname']['@type']+':</b> '+i['hostnames']['hostname']['@name']+'</div>'
po,pc,pf = 0,0,0
ss,pp,ost = {},{},{}
lastportid = 0
if '@addr' in i['address']:
address = i['address']['@addr']
elif type(i['address']) is list:
for ai in i['address']:
if ai['@addrtype'] == 'ipv4':
address = ai['@addr']
addressmd5 = hashlib.md5(str(address).encode('utf-8')).hexdigest()
if i['status']['@state'] == 'up':
if address not in cpe:
hostsup = (hostsup + 1)
r['tr'][address] = {
'hostindex': '',
'hostname': hostname,
'po': 0,
'pc': 0,
'pf': 0,
'totports': str(0),
'addressmd5': addressmd5
}
cpe[address] = {}
striggered = False
e = ''
if 'ports' in i and 'port' in i['ports']:
for pobj in i['ports']['port']:
if type(pobj) is dict:
p = pobj
else:
p = i['ports']['port']
if lastportid == p['@portid']:
continue
else:
lastportid = p['@portid']
if 'service' in p:
if filterservice != "" and p['service']['@name'] == filterservice:
striggered = True
if filterportid != "" and p['@portid'] == filterportid:
striggered = True
pp[p['@portid']] = p['@portid']
if 'service' in p:
ss[p['service']['@name']] = p['service']['@name']
if '@extrainfo' in p['service']:
e = p['service']['@extrainfo']
# cpehtml = ''
if 'cpe' in p['service']:
if type(p['service']['cpe']) is list:
for cpei in p['service']['cpe']:
cpe[address][cpei] = cpei
else:
cpe[address][p['service']['cpe']] = p['service']['cpe']
if '@ostype' in p['service']:
if p['service']['@ostype'] in allostypelist:
allostypelist[p['service']['@ostype']] = (allostypelist[p['service']['@ostype']] +1)
else:
allostypelist[p['service']['@ostype']] = 1;
ost[p['service']['@ostype']] = p['service']['@ostype']
if p['service']['@name'] in sscount:
sscount[p['service']['@name']] = (sscount[p['service']['@name']] + 1)
else:
sscount[p['service']['@name']] = 1
if p['@portid'] in picount:
picount[p['@portid']] = (picount[p['@portid']] + 1)
else:
picount[p['@portid']] = 1
if p['state']['@state'] == 'closed':
ports['closed'] = (ports['closed'] + 1)
pc = (pc + 1)
elif p['state']['@state'] == 'open':
ports['open'] = (ports['open'] + 1)
po = (po + 1)
elif p['state']['@state'] == 'filtered':
ports['filtered'] = (ports['filtered'] + 1)
pf = (pf + 1)
services = ''
for s in ss:
if filterservice != ss[s]:
services += '<a href="/report/service/'+ss[s]+'/">'+ss[s]+'</a>, '
else:
services += '<span class="tmlabel" style="background-color:#ffcc00;color:#333;">'+ss[s]+'</span>, '
ostype = ''
for oty in ost:
ostype += '<i class="'+fromOSTypeToFontAwesome(html.escape(ost[oty]))+'"></i> <span class="grey-text small">'+ost[oty].lower()+'</span> '
tdports = ''
for kp in pp:
if filterportid != pp[kp]:
tdports += '<a href="/report/portid/'+pp[kp]+'/">'+pp[kp]+'</a>, '
else:
tdports += '<span class="tmlabel" style="background-color:#ffcc00;color:#333;">'+pp[kp]+'</span>, '
poclass = ''
if po == 0:
poclass = 'zeroportopen'
labelout = '<span id="hostlabel'+str(hostindex)+'"></span>'
newlabelout = '<div id="hostlabel'+str(hostindex)+'"></div><div id="hostlabelbb'+str(hostindex)+'"></div>'
if scanmd5 in labelhost:
if addressmd5 in labelhost[scanmd5]:
labelcolor = labelToColor(labelhost[scanmd5][addressmd5])
labelmargin = labelToMargin(labelhost[scanmd5][addressmd5])
labelout = '<span id="hostlabel'+str(hostindex)+'" style="margin-left:'+labelmargin+'" class="rightlabel '+labelcolor+'">'+html.escape(labelhost[scanmd5][addressmd5])+'</span>'
newlabelout = '<div id="hostlabel'+str(hostindex)+'" style="z-index:99;transform: rotate(-8deg);margin-top:-14px;margin-left:-40px;" class="leftlabel '+labelcolor+'">'+html.escape(labelhost[scanmd5][addressmd5])+'</div>'+\
'<div id="hostlabelbb'+str(hostindex)+'" class="'+labelcolor+'" style="border-radius:0px 4px 0px 4px;z-index:98;position:absolute;width:18px;height:10px;margin-left:-54px;margin-top:-3px;"></div>'
notesout,notesb64,removenotes = '','',''
if scanmd5 in noteshost:
if addressmd5 in noteshost[scanmd5]:
notesb64 = noteshost[scanmd5][addressmd5]
notesout = '<a id="noteshost'+str(hostindex)+'" class="grey-text" href="#!" onclick="javascript:openNotes(\''+hashlib.md5(str(address).encode('utf-8')).hexdigest()+'\', \''+notesb64+'\');"><i class="fas fa-comment"></i> contains notes</a>'
removenotes = '<li><a href="#!" class="grey-text" onclick="javascript:removeNotes(\''+addressmd5+'\', \''+str(hostindex)+'\');">Remove notes</a></li>'
cveout = ''
cvecount = 0
if scanmd5 in cvehost:
if addressmd5 in cvehost[scanmd5]:
cvejson = json.loads(cvehost[scanmd5][addressmd5])
for ic in cvejson:
if type(ic) is list:
listcve = ic
elif type(ic) is dict:
listcve = [ic]
for cvei in listcve:
if 'id' in cvei:
cvecount = (cvecount + 1)
if cvecount > 0:
cveout = '<a href="/report/'+address+'" class="grey-text"><i class="fas fa-exclamation-triangle"></i> '+str(cvecount)+' CVE found</a>'
if (filterservice != "" and striggered is True) or (filterportid != "" and striggered is True) or (filterservice == "" and filterportid == ""):
portstateout = '<div style="overflow:none;background-color:#444;" class="tooltipped" data-position="top" data-tooltip="'+str(po)+' open, '+str(pc)+' closed, '+str(pf)+' filtered">'+\
' <div class="perco" data-po="'+str(po)+'" style="padding-left:16px;padding-right:20px;"><b>'+str(po)+'</b></div>'+\
' </div>'
if (filterservice != "" and striggered is True):
portstateout = '<div style="overflow:none;background-color:#444;" class="tooltipped" data-position="top" data-tooltip="'+str(po)+' open, '+str(pc)+' closed, '+str(pf)+' filtered">'+\
' <div class="perco" data-po="'+str(po)+'" data-pt="'+str((po + pf + pc))+'" style="padding-left:16px;padding-right:20px;"><b>'+str(po)+'</b></div>'+\
' </div>'
tags = []
extrainfosplit = e.split(' ')
for eis in extrainfosplit:
if re.search('[a-zA-Z0-9\_]+\/[0-9\.]+', eis) is not None:
robj = re.search('([a-zA-Z0-9\_]+)\/([0-9\.]+)', eis)
tags.append(robj.group(1)+' '+robj.group(2))
r['tr'][address] = {
'hostindex': str(hostindex),
'hostname': hostname,
'ostype': ostype,
'notes': notesout,
'cve': cveout,
'portstate': portstateout,
'po': po,
'pc': pc,
'pf': pf,
'tags':tags,
'totports': str((po + pf + pc)),
'services': str(services[0:-2]),
'ports': str(tdports[0:-2]),
'addressmd5': addressmd5,
'removenotes': removenotes,
'labelout': labelout,
'newlabelout': newlabelout,
'notesb64': notesb64,
'notesout': notesout,
'cveout': cveout,
'cvecount': cvecount
}
hostindex = (hostindex + 1)
# this fix single host report
if type(ik) is not dict:
break;
else:
if address in r['tr']:
del r['tr'][address]
else:
if address in r['tr']:
del r['tr'][address]
totports = (ports['open']+ports['closed']+ports['filtered'])
if filterservice == "" and filterportid == "":
scaninfobox2 = '<canvas id="chart1"></canvas>'
scaninfobox3 = '<canvas id="chart3" height="150"></canvas>'
else:
scaninfobox2 = '<div class="small">'+\
' <b class="orange-text">Filter port / service:</b> <b>'+html.escape(filterportid+filterservice)+'</b> <a href="/"><i class="fas fa-trash-alt"></i></a><br>'+\
' <b class="orange-text">Total Ports:</b> '+str(totports)+'<br>'+\
' <b class="orange-text">Open Ports:</b> '+str(ports['open'])+'<br>'+\
' <b class="orange-text">Closed Ports:</b> '+str(ports['closed'])+'<br>'+\
' <b class="orange-text">Filtered Ports:</b> '+str(ports['filtered'])+'</div>'
scaninfobox3 = '<div id="detailstopports"></div>'
scantype = ''
if 'scaninfo' in o and '@type' in o['scaninfo']:
scantype = o['scaninfo']['@type']
if 'scaninfo' in o and type(o['scaninfo']) is list:
for sinfo in o['scaninfo']:
scantype += sinfo['@type']+', '
scantype = scantype[0:-2]
protocol = ''
if 'scaninfo' in o and '@protocol' in o['scaninfo']:
protocol = o['scaninfo']['@protocol']
if 'scaninfo' in o and type(o['scaninfo']) is list:
for sinfo in o['scaninfo']:
protocol += sinfo['@protocol']+', '
protocol = protocol[0:-2]
r['stats'] = {
'scaninfobox2': scaninfobox2,
'scaninfobox3': scaninfobox3,
'startstr': o['@startstr'],
'scantype': scantype,
'protocol': protocol,
'nmapver': o['@version'],
'nmapargs': o['@args'],
'xmlver': o['@xmloutputversion'],
'hostsup': str(hostsup),
'popen': ports['open'],
'pclosed': ports['closed'],
'pfiltered': ports['filtered']
}
allss = ''
allsslabels = ''
allssdata = ''
allssc = 0
for i in sorted(sscount, key=sscount.__getitem__, reverse=True):
if allssc <= 30:
if filterservice != i:
allss += '<a href="/report/service/'+html.escape(i)+'/">'+html.escape(i)+'('+str(sscount[i])+')</a>, '
else:
allss += '<span class="tmlabel" style="background-color:#ffcc00;color:#333;">'+html.escape(i)+'</span>, '
allsslabels += '"'+html.escape(i)+'", '
allssdata += ''+str(sscount[i])+','
allssc = (allssc + 1)
allpilabels = ''
allpidata = ''
allpilinks = ''
allpic = 1
for i in sorted(picount, key=picount.__getitem__, reverse=True):
if allpic <= 5:
allpilinks += '<a href="/report/portid/'+str(i)+'/">'+str(i)+'</a>, '
allpilabels += '"'+html.escape(i)+'", '
allpidata += ''+str(picount[i])+','
allpic = (allpic + 1)
elif allpic > 5 and allpic <= 10:
allpilinks += '<a href="/report/portid/'+str(i)+'/">'+str(i)+'</a>, '
allpic = (allpic + 1)
allostypelinks = ''
for i in sorted(allostypelist, key=allostypelist.__getitem__, reverse=True):
allostypelinks += '<a href="">'+str(i)+'</a>, '
r['stats']['services'] = allss[0:-2]
r['stats']['portids'] = allpilinks[0:-2]
r['stats']['ostypes'] = allostypelinks[0:-2]
r['pretable'] = ''
r['js'] = ''
if filterservice == "" and filterportid == "":
r['js'] += '<script>'+\
' $(document).ready(function() {'+\
' var ctx = document.getElementById("chart1").getContext("2d");'+\
' var myChart = new Chart(ctx, {'+\
' type: "doughnut", data: {labels:["Open", "Filtered", "Closed"], datasets: [{ data: ['+str(ports['open'])+','+str(ports['filtered'])+','+str(ports['closed'])+'], backgroundColor:["rgba(0,150,0,0.8)","rgba(255,200,0,0.8)","rgba(255,0,0,0.8)"], borderColor:"#ccc", borderWidth:0 }]}, options: {legend: { position: "right", labels: { fontColor: "#ccc" } }}'+\
' });'+\
' var ctx = document.getElementById("chart3").getContext("2d");'+\
' var myChart = new Chart(ctx, {'+\
' type: "doughnut", data: {labels:['+allpilabels[0:-2]+'], datasets: [{ data: ['+allpidata[0:-1]+'], borderColor: "#fff", borderWidth:0, backgroundColor:["#e6194b", "#3cb44b", "#ffe119", "#4363d8", "#f58231", "#911eb4", "#46f0f0", "#f032e6", "#bcf60c", "#fabebe", "#008080", "#e6beff", "#9a6324", "#fffac8", "#800000", "#aaffc3", "#808000", "#ffd8b1", "#000075", "#808080", "#ffffff", "#000000"] }]}, options: {legend: { position: "right", labels: { fontColor: "#ccc" }}}'+\
' });'+\
' var ctx = document.getElementById("chart2").getContext("2d");'+\
' var myChart = new Chart(ctx, {'+\
' type: "horizontalBar", data: { labels:['+allsslabels[0:-2]+'], datasets: [{ data: ['+allssdata[0:-1]+'], backgroundColor: "rgba(0,140,220,0.8)" }]}, options: {legend: { display: false }, scales: { xAxes: [{ ticks: { beginAtZero: true, fontColor: "#666" } }], yAxes: [{ ticks: { fontColor: "#666" } }] } }'+\
' });'+\
' });'+\
'</script>'
else:
r['pretablestyle'] = 'display:none;'
r['js'] += '<script>'+\
' $(document).ready(function() {'+\
' /* $("#scantitle").html("'+html.escape(request.session['scanfile'])+'"); */ '+\
' $(".dropdown-trigger").dropdown();'+\
' $(".tooltipped").tooltip();'+\
' $(".perco").each(function() { '+\
' var pwidth = ( (($(this).attr("data-po") * 100) / '+str(totports)+') ); '+\
' /* console.log(pwidth); */ '+\
' $(this).css("width", pwidth+"%" ); '+\
' if($(this).attr("data-po") < 1) { $(this).html(" "); $(this).css("background-color","#666") } '+\
' });'+\
' $("#detailstopports").html(\'<span class="small">'+str(allss[0:-2])+'</span>\');'+\
' });'+\
'</script>'
cpedict = {}
#r['cpestring'] = ''
for cpeaddr in cpe:
for cpei in cpe[cpeaddr]:
if re.search('^cpe:.+:.+:.+:.+$', cpei) is not None:
#r['cpestring'] += cpei+'<br>'
if cpei not in cpedict:
cpedict[cpei] = {}
if cpeaddr not in cpedict[cpei]:
cpedict[cpei][cpeaddr] = 1
r['cpestring'] = ' <input type="hidden" id="cpestring" value="'+urllib.parse.quote_plus(base64.b64encode(json.dumps(cpedict).encode()))+'" /> '
return render(request, 'nmapreport/nmap_hostdetails.html', r)
def scan_diff(request, f1, f2):
r = {}
if 'auth' not in request.session:
return render(request, 'nmapreport/nmap_auth.html', r)
else:
r['auth'] = True
try:
if xmltodict.parse(open('/opt/xml/'+f1, 'r').read()) is not None:
r['f1'] = f1
if xmltodict.parse(open('/opt/xml/'+f2, 'r').read()) is not None:
r['f2'] = f2
except:
r['f1'] = ''
r['f2'] = ''
return render(request, 'nmapreport/nmap_ndiff.html', r)
def about(request):
r = {}
if 'auth' not in request.session:
return render(request, 'nmapreport/nmap_auth.html', r)
else:
r['auth'] = True
return render(request, 'nmapreport/nmap_about.html', r)