-
Notifications
You must be signed in to change notification settings - Fork 21
/
BurpImporter.py
457 lines (397 loc) · 21.9 KB
/
BurpImporter.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
"""
Name: Burp Importer
Date: 02/01/2016
Author: Smeege
Contact: [email protected]
Description: Burp Importer is a Burp Suite extension written in python which allows users to
connect to a list of web servers and populate the sitemap with successful connections.
Burp Importer also has the ability to parse Nessus (.nessus), Nmap (.gnmap), or a text
file for potential web connections.
Copyright (c) 2016, Smeege Sec (http://www.smeegesec.com)
All rights reserved.
Please see the attached LICENSE file for additional licensing information.
"""
from burp import IExtensionStateListener
from burp import IBurpExtender
from burp import ITab
from datetime import datetime
from javax import swing
from java.awt import Color
from java.awt import Font
from java.awt import Toolkit
from java.awt.datatransfer import StringSelection
from java.awt.datatransfer import DataFlavor
from java.net import URL
import thread
import java.lang as lang
import os
import re
import xml.dom.minidom
class BurpExtender(IBurpExtender, ITab, IExtensionStateListener):
def registerExtenderCallbacks(self, callbacks):
print "Loading Burp Importer Extension..."
self._callbacks = callbacks
self._callbacks.setExtensionName("Burp Importer")
self._callbacks.registerExtensionStateListener(self)
self._helpers = callbacks.getHelpers()
self.initGui()
self._callbacks.addSuiteTab(self)
print "\nExtension Loaded!"
return
def initGui(self):
self.tab = swing.JPanel()
self.titleLabel = swing.JLabel("Burp Importer")
self.titleLabel.setFont(Font("Tahoma", 1, 16))
self.titleLabel.setForeground(Color(235,136,0))
self.infoLabel = swing.JLabel("Burp Importer loads a list of URLs or parses output from various automated scanners and populates the sitemap with each successful connection.")
self.infoLabel.setFont(Font("Tahoma", 0, 12))
self.fileOptionLabel = swing.JLabel("File Load Option")
self.fileOptionLabel.setFont(Font("Tahoma", 1, 12))
self.fileDescLabel = swing.JLabel("This option is only used when loading a file to be parsed for http(s) connections. You can disregard this option and paste a list of URLs in the box below.")
self.fileDescLabel.setFont(Font("Tahoma", 0, 12))
self.fileDescLabel2 = swing.JLabel("Supported files: .gnamp, .nessus, .txt")
self.fileDescLabel2.setFont(Font("Tahoma", 0, 12))
self.parseFileButton = swing.JButton("Load File to Parse", actionPerformed=self.loadFile)
self.urlLabel = swing.JLabel("URL List")
self.urlLabel.setFont(Font("Tahoma", 1, 12))
self.urlDescLabel = swing.JLabel("URLs in this list should be in the format: protocol://host:port/optional-path")
self.urlDescLabel.setFont(Font("Tahoma", 0, 12))
self.urlDescLabel2 = swing.JLabel("Example: https://127.0.0.1:443/index. Port is optional, 80 or 443 will be assumed.")
self.urlDescLabel2.setFont(Font("Tahoma", 0, 12))
self.pasteButton = swing.JButton("Paste", actionPerformed=self.paste)
self.loadButton = swing.JButton("Copy List", actionPerformed=self.setClipboardText)
self.removeButton = swing.JButton("Remove", actionPerformed=self.remove)
self.clearButton = swing.JButton("Clear", actionPerformed=self.clear)
self.urlListModel = swing.DefaultListModel()
self.urlList = swing.JList(self.urlListModel)
self.urlListPane = swing.JScrollPane(self.urlList)
self.addButton = swing.JButton("Add", actionPerformed=self.addURL)
self.runLabel = swing.JLabel("<html>Click the <b>RUN</b> button to attempt a connection to each URL in the URL List. Successful connections will be added to Burp's sitemap.</html>")
self.runLabel.setFont(Font("Tahoma", 0, 12))
self.redirectsCheckbox = swing.JCheckBox("Enable: Follow Redirects (301 or 302 Response)")
self.runButton = swing.JButton("RUN", actionPerformed=self.runClicked)
self.runButton.setFont(Font("Tahoma", 1, 12))
self.addUrlField = swing.JTextField("New URL...", focusGained=self.clearField, focusLost=self.fillField)
self.logLabel = swing.JLabel("Log:")
self.logLabel.setFont(Font("Tahoma", 1, 12))
self.logPane = swing.JScrollPane()
self.logArea = swing.JTextArea("Burp Importer Log - Parsing and Run details will be appended here.\n")
self.logArea.setLineWrap(True)
self.logPane.setViewportView(self.logArea)
self.webPortDict = {'80':'http','81':'http','82':'http','83':'http','443':'https','2301':'http','2381':'https','8000':'http','8008':'http','8080':'http','8083':'https','8180':'http','8400':'http',\
'8443':'https','8834':'https','8888':'http','9001':'http','9043':'https','9080':'http','9090':'http','9100':'http','9443':'https'}
self.bar = swing.JSeparator(swing.SwingConstants.HORIZONTAL)
self.bar2 = swing.JSeparator(swing.SwingConstants.HORIZONTAL)
layout = swing.GroupLayout(self.tab)
self.tab.setLayout(layout)
# Credit to Antonio Sánchez and https://github.com/Dionach/HeadersAnalyzer/
layout.setHorizontalGroup(
layout.createParallelGroup(swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGap(15)
.addGroup(layout.createParallelGroup(swing.GroupLayout.Alignment.LEADING)
.addComponent(self.titleLabel)
.addComponent(self.infoLabel)
.addComponent(self.fileOptionLabel)
.addComponent(self.fileDescLabel)
.addComponent(self.fileDescLabel2)
.addComponent(self.parseFileButton)
.addComponent(self.bar)
.addComponent(self.urlLabel)
.addComponent(self.urlDescLabel)
.addComponent(self.urlDescLabel2)
.addComponent(self.bar2)
.addComponent(self.runLabel)
.addComponent(self.redirectsCheckbox)
.addComponent(self.runButton)
.addComponent(self.logPane, swing.GroupLayout.PREFERRED_SIZE, 525, swing.GroupLayout.PREFERRED_SIZE)
.addGroup(layout.createSequentialGroup()
.addGroup(layout.createParallelGroup(swing.GroupLayout.Alignment.TRAILING)
.addComponent(self.addButton)
.addGroup(layout.createParallelGroup(swing.GroupLayout.Alignment.LEADING)
.addComponent(self.logLabel)
.addGroup(layout.createParallelGroup(swing.GroupLayout.Alignment.TRAILING, False)
.addComponent(self.removeButton, swing.GroupLayout.DEFAULT_SIZE, swing.GroupLayout.DEFAULT_SIZE, lang.Short.MAX_VALUE)
.addComponent(self.pasteButton, swing.GroupLayout.DEFAULT_SIZE, swing.GroupLayout.DEFAULT_SIZE, lang.Short.MAX_VALUE)
.addComponent(self.loadButton, swing.GroupLayout.DEFAULT_SIZE, swing.GroupLayout.DEFAULT_SIZE, lang.Short.MAX_VALUE)
.addComponent(self.clearButton, swing.GroupLayout.DEFAULT_SIZE, swing.GroupLayout.PREFERRED_SIZE, lang.Short.MAX_VALUE))))
.addPreferredGap(swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addGroup(layout.createParallelGroup(swing.GroupLayout.Alignment.LEADING)
.addComponent(self.urlListPane, swing.GroupLayout.PREFERRED_SIZE, 350, swing.GroupLayout.PREFERRED_SIZE)
.addComponent(self.addUrlField, swing.GroupLayout.PREFERRED_SIZE, 350, swing.GroupLayout.PREFERRED_SIZE))))
.addContainerGap(26, lang.Short.MAX_VALUE)))
layout.setVerticalGroup(
layout.createParallelGroup(swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGap(15)
.addComponent(self.titleLabel)
.addGap(10)
.addComponent(self.infoLabel)
.addGap(10)
.addComponent(self.fileOptionLabel)
.addGap(10)
.addComponent(self.fileDescLabel)
.addGap(10)
.addComponent(self.fileDescLabel2)
.addGap(10)
.addComponent(self.parseFileButton)
.addGap(10)
.addComponent(self.bar)
.addComponent(self.urlLabel)
.addGap(10)
.addComponent(self.urlDescLabel)
.addGap(10)
.addComponent(self.urlDescLabel2)
.addPreferredGap(swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addGroup(layout.createParallelGroup(swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGroup(layout.createParallelGroup(swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addComponent(self.pasteButton)
.addPreferredGap(swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(self.loadButton)
.addPreferredGap(swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(self.removeButton)
.addPreferredGap(swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(self.clearButton))
.addComponent(self.urlListPane, swing.GroupLayout.PREFERRED_SIZE, 138, swing.GroupLayout.PREFERRED_SIZE))
.addGap(10)
.addGroup(layout.createParallelGroup(swing.GroupLayout.Alignment.BASELINE)
.addComponent(self.addButton)
.addComponent(self.addUrlField, swing.GroupLayout.PREFERRED_SIZE, swing.GroupLayout.DEFAULT_SIZE, swing.GroupLayout.PREFERRED_SIZE))))
.addGap(10)
.addComponent(self.bar2)
.addComponent(self.runLabel)
.addGap(10)
.addComponent(self.redirectsCheckbox)
.addGap(10)
.addComponent(self.runButton)
.addGap(10)
.addComponent(self.logLabel)
.addPreferredGap(swing.LayoutStyle.ComponentPlacement.RELATED)
.addGap(8, 8, 8)
.addComponent(self.logPane, swing.GroupLayout.PREFERRED_SIZE, 125, swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(swing.LayoutStyle.ComponentPlacement.RELATED)
.addContainerGap(swing.GroupLayout.DEFAULT_SIZE, lang.Short.MAX_VALUE)))
return
def getTabCaption(self):
return("Burp Importer")
def getUiComponent(self):
return self.tab
def clear(self, e):
emptyList = []
self.urlList.setListData(emptyList)
def clearField(self, e):
source = e.getSource()
if source.getText() == "New URL...":
source.setText("")
def fillField(self, e):
source = e.getSource()
if not source.getText():
source.setText("New URL...")
def remove(self, e):
indices = self.urlList.getSelectedIndices().tolist()
currentList = self.getUrlList()
for index in reversed(indices):
del currentList[index]
self.urlList.setListData(currentList)
def paste(self, e):
clipboard = self.getClipboardText()
if clipboard != None and clipboard != "":
lines = clipboard.split('\n')
currentList = self.getUrlList()
for line in lines:
if line not in currentList and not line.isspace():
currentList.append(line)
self.urlList.setListData(currentList)
def plaintext(self, loadedFile):
text = loadedFile.readlines()
currentList = self.getUrlList()
for item in text:
currentList.append(item)
self.urlList.setListData(currentList)
def addURL(self, e):
currentList = self.getUrlList()
currentList.append(self.addUrlField.getText())
self.urlList.setListData(currentList)
self.addUrlField.setText("New URL...")
def getUrlList(self):
model = self.urlList.getModel()
currentList = []
for i in range(0, model.getSize()):
currentList.append(model.getElementAt(i))
return currentList
def getClipboardText(self):
clipboard = Toolkit.getDefaultToolkit().getSystemClipboard()
contents = clipboard.getContents(None)
gotText = (contents != None) and contents.isDataFlavorSupported(DataFlavor.stringFlavor)
if gotText:
return contents.getTransferData(DataFlavor.stringFlavor)
else:
return None
def setClipboardText(self, e):
clipboard = Toolkit.getDefaultToolkit().getSystemClipboard()
stringUrlList = '\n'.join(self.getUrlList())
clipboard.setContents(StringSelection(stringUrlList), None)
def runClicked(self, e):
args = ()
thread.start_new_thread(self.runURLs, args)
return
def runURLs(self):
self.badUrlList = []
self.goodUrlList = []
self.redirectCounter = 0
self.urlRegex = re.compile('http[s]?://(?:[a-zA-Z]|[0-9]|[$-_@.&+]|[!*\(\),]|(?:%[0-9a-fA-F][0-9a-fA-F]))+')
urlList = filter(None, self.getUrlList())
for url in urlList:
if self.urlRegex.match(url):
self.connect(url)
else:
self.badUrlList.append(url)
currentTime = str(datetime.now()).split('.')[0]
if self.goodUrlList:
print '\n[%s] Number of successful connections: %d/%d\n' % (currentTime, len(self.goodUrlList), len(urlList) + self.redirectCounter)
self.logArea.append('\n[%s] Number of successful connections: %d/%d\n' % (currentTime, len(self.goodUrlList), len(urlList) + self.redirectCounter))
else:
print '\n[%s] Number of successful connections: 0/%d\n' % (str(datetime.now()).split('.')[0], len(urlList) + self.redirectCounter)
self.logArea.append('\n[%s] Number of successful connections: 0/%d\n' % (currentTime, len(urlList) + self.redirectCounter))
if self.redirectsCheckbox.isSelected():
print '[%s] Number of redirects found: %d\n' % (currentTime, self.redirectCounter)
self.logArea.append('[%s] Number of redirects found: %d\n' % (currentTime, self.redirectCounter))
if self.badUrlList:
print '[%s] Incorrect URL format or issue connecting:\n' % currentTime
self.logArea.append('[%s] Incorrect URL format or issue connecting:\n' % currentTime)
for badUrl in self.badUrlList:
print '\t' + badUrl
self.logArea.append('\t' + badUrl + '\n')
print '\n'
def connect(self, url):
if re.findall('(?:\:\d{2,5})', url) and self.urlRegex.match(url):
try:
javaURL = URL(url)
newRequest = self._helpers.buildHttpRequest(javaURL)
requestResponse = self._callbacks.makeHttpRequest(self._helpers.buildHttpService(str(javaURL.getHost()), javaURL.getPort(), str(javaURL.getProtocol())), newRequest)
# Follow redirects if a 301 or 302 response is received. As of Oct 9 2014 the API is not capable of this: http://forum.portswigger.net/thread/1504/ask-burp-follow-redirections-extension
response = requestResponse.getResponse()
if response:
requestInfo = self._helpers.analyzeResponse(response)
responseHeader = requestInfo.getHeaders()
if ('301' in responseHeader[0] or '302' in responseHeader[0]) and self.redirectsCheckbox.isSelected():
self.redirectCounter += 1
for headerLine in responseHeader:
if 'Location: ' in headerLine or 'location: ' in headerLine:
url = self.locationHeaderConvert(str(headerLine.split(' ')[1]), str(javaURL.getPort()), str(javaURL.getHost()), '')
self.connect(url)
self.goodUrlList.append(url)
self._callbacks.addToSiteMap(requestResponse)
else:
self.badUrlList.append(url)
except:
self.badUrlList.append(url)
else:
if 'http://' in url:
fixedUrl = self.addPort(url, '80')
self.connect(fixedUrl)
elif 'https://' in url:
fixedUrl = self.addPort(url, '443')
self.connect(fixedUrl)
else:
self.badUrlList.append(url)
def addPort(self, url, port):
fixedUrl = ""
urlSplit = filter(None, url.split('/'))
for i in range(len(urlSplit) + 1):
fixedUrl += str(url.split('/')[i])
if i == 1:
fixedUrl += '//'
elif i == 2:
fixedUrl += ':%s/' % port
elif i > 2 and i < len(urlSplit):
fixedUrl += '/'
elif i == len(urlSplit) and url[-1:] == '/':
fixedUrl += '/'
return fixedUrl
def loadFile(self, e):
chooseFile = swing.JFileChooser()
fileDialog = chooseFile.showDialog(self.tab, "Choose file")
if fileDialog == swing.JFileChooser.APPROVE_OPTION:
file = chooseFile.getSelectedFile()
filename = file.getCanonicalPath()
fileExtension = os.path.splitext(filename)[1]
try:
loadedFile = open(filename, "r")
except IOError as e:
print "Error reading file.\n" + str(e)
self.logArea.append('\nError reading File: %s' % filename)
if fileExtension == '.gnmap':
self.nmap(loadedFile)
elif fileExtension == '.nessus':
self.nessus(loadedFile)
elif fileExtension == '.txt':
self.plaintext(loadedFile)
else:
print '\nFile %s was read but does not have the correct extension (.gnmap, .nessus, .txt).' % filename
self.logArea.append('\nFile %s was read but does not have the correct extension (.gnmap, .nessus, .txt).' % filename)
def nmap(self, loadedFile):
urlList = self.getUrlList()
for line in loadedFile.readlines():
if 'Ports' in line and 'open' in line:
lineSplit = line.split(' ')
host = lineSplit[1]
for openPort in lineSplit[3:]:
openPortSplit = openPort.split('/')
if '/' in openPort:
if openPortSplit[1] == 'open' and openPortSplit[0] in self.webPortDict:
urlList.append(self.webPortDict[openPortSplit[0]] + '://' + host + ':' + openPortSplit[0])
self.urlList.setListData(urlList)
def nessus(self, loadedFile):
urlList = self.getUrlList()
dom = xml.dom.minidom.parse(loadedFile)
reportHost = dom.getElementsByTagName('ReportHost')
for host in reportHost:
hostIP = host.getAttribute('name')
for reportItem in host.getElementsByTagName('ReportItem'):
if reportItem.getAttribute('pluginID') == '24260':
port = str(reportItem.getAttribute('port'))
pluginOutput = reportItem.getElementsByTagName('plugin_output')[0].firstChild.nodeValue
locationHeader = re.search('Location: (.+?)\n', pluginOutput)
if locationHeader:
url = self.locationHeaderConvert(str(locationHeader.group(1)), port, hostIP, pluginOutput)
else:
if 'SSL : no' in pluginOutput:
url = 'http://' + hostIP + ':' + port + '/'
elif 'SSL : yes' in pluginOutput:
url = 'https://' + hostIP + ':' + port + '/'
else:
if port in self.webPortDict.iterkeys():
url = self.webPortDict[port] + '://' + hostIP + ':' + port + '/'
else:
url = 'http://' + hostIP + ':' + port + '/'
urlList.append(url)
self.urlList.setListData(urlList)
def locationHeaderConvert(self, locationHeader, port, host, pluginOutput):
url = ""
if 'http://' in locationHeader or 'https://' in locationHeader:
# Absolute Path
if re.findall('(?:\:\d{2,5})', locationHeader):
url = locationHeader
else:
url = self.addPort(locationHeader, port)
if 'http://' in url and port == '443':
url = url.replace(':443', ':80')
elif 'https://' in url and port == '80':
url = url.replace(':80', ':443')
else:
# Relative Path
if 'SSL : no' in pluginOutput:
url = 'http://' + host + ':' + port + locationHeader
elif 'SSL : yes' in pluginOutput:
url = 'https://' + host + ':' + port + locationHeader
else:
if locationHeader[0] is not '/':
locationHeader = '/' + locationHeader
if port in self.webPortDict.iterkeys():
url = self.webPortDict[port] + '://' + host + ':' + port + locationHeader
else:
url = 'http://' + host + ':' + port + locationHeader
return url