-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGet-BurpEx.ps1
65 lines (39 loc) · 3.37 KB
/
Get-BurpEx.ps1
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
<#
.DESCRIPTION
*Work In Progress*
Get Burp extensions, script for getting usable burp extensions.
Author: caabv
#>
$i = 0
if (Test-Path "C:\Temp\Burp") {
Write-Host "C:\Temp\Burp - exist" -ForegroundColor Yellow; $i = 1
}
else {
New-Item -ItemType directory -Path 'C:\Temp\Burp'
Write-Host "Created 'Burp' folder in 'C:\Temp\'" -ForegroundColor Yellow
}
Invoke-WebRequest -Uri 'https://github.com/albinowax/ActiveScanPlusPlus/archive/master.zip' -OutFile 'C:\TEMP\Burp\ActiveScanPlusPlus.zip'
Invoke-WebRequest -Uri 'https://github.com/RetireJS/retire.js/archive/master.zip' -OutFile 'C:\Temp\Burp\retirejs.zip'
Invoke-WebRequest -Uri 'https://github.com/NetSPI/JSONBeautifier/archive/master.zip' -OutFile 'C:\Temp\Burp\JSONBeautifier.zip'
Invoke-WebRequest -Uri 'https://github.com/federicodotta/Java-Deserialization-Scanner/archive/master.zip' -OutFile 'C:\Temp\Burp\Java-Deserialization-Scanner.zip'
Invoke-WebRequest -Uri 'https://github.com/allfro/dotNetBeautifier/archive/master.zip' -OutFile 'C:\Temp\Burp\dotNetNeautifier.zip'
Invoke-WebRequest -Uri 'https://github.com/NetSPI/JavaSerialKiller/archive/master.zip' -OutFile 'C:\Temp\Burp\JavaSerialKiller.zip'
Invoke-WebRequest -Uri 'https://github.com/lightbulb-framework/lightbulb-framework/archive/master.zip' -OutFile 'C:\Temp\Burp\Lightbulb.zip'
Invoke-WebRequest -Uri 'https://github.com/PortSwigger/additional-scanner-checks/archive/master.zip' -OutFile 'C:\Temp\Burp\AdditionalScannerChecks.zip'
Invoke-WebRequest -Uri 'https://github.com/nccgroup/BurpSuiteLoggerPlusPlus/archive/master.zip' -OutFile 'C:\Temp\Burp\Logger.zip'
Invoke-WebRequest -Uri 'https://github.com/PortSwigger/custom-parameter-handler/archive/master.zip' -OutFile 'C:\Temp\Burp\custom-paramter-handler.zip'
Invoke-WebRequest -Uri 'https://github.com/PortSwigger/match-replace-session-action/archive/master.zip' -OutFile 'C:\Temp\Burp\match-replace-session.zip'
Invoke-WebRequest -Uri 'https://github.com/NetSPI/Wsdler/archive/master.zip' -OutFile 'C:\Temp\Burp\Wsdler.zip'
Invoke-WebRequest -Uri 'https://github.com/PortSwigger/collaborator-everywhere/archive/master.zip' -OutFile 'C:\Temp\Burp\collaborator-everywhere.zip'
Invoke-WebRequest -Uri 'https://github.com/PortSwigger/software-vulnerability-scanner/archive/master.zip' -OutFile 'C:\Temp\Burp\software-vuln-scanner.zip'
Invoke-WebRequest -Uri 'https://github.com/AresS31/swurg/archive/master.zip' -OutFile 'C:\Temp\Burp\swaggerParser.zip'
Invoke-WebRequest -Uri 'https://github.com/codewatchorg/sqlipy/archive/master.zip' -OutFile 'C:\Temp\Burp\sqlipy.zip'
Invoke-WebRequest -Uri 'https://github.com/PortSwigger/content-type-converter/archive/master.zip' -OutFile 'C:\Temp\Burp\contentTypeConverter.zip'
Invoke-WebRequest -Uri 'https://gitlab.com/technotame/cookie-decrypter/-/archive/master/cookie-decrypter-master.zip' -OutFile 'C:\Temp\Burp\CookieDecrypter.zip'
Invoke-WebRequest -Uri 'https://github.com/PortSwigger/backslash-powered-scanner/archive/master.zip' -OutFile 'C:\Temp\Burp\backslashPoweredScanner.zip'
Write-Host "Downloaded all extensions - starting to unzip" -ForegroundColor Yellow
Get-ChildItem 'C:\Temp\Burp\' -Filter *.zip | Expand-Archive -DestinationPath 'C:\Temp\Burp\' -Force
Write-Host "All .zip files unzipped" -ForegroundColor Yellow
Write-Host "Cleaning up" -ForegroundColor Yellow
Remove-Item -Path 'C:\Temp\Burp\*.zip'
Write-Host "Script finished" -ForegroundColor Green