-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathinstall.sh
21 lines (18 loc) · 1.14 KB
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash
# Download Burp Suite Profesional Latet Version
echo 'Downloading Burp Suite Professional Latest....'
html=$(curl -s https://portswigger.net/burp/releases)
version=$(echo $html | grep -Po '(?<=/burp/releases/professional-community-)[0-9]+\-[0-9]+\-[0-9]+' | head -n 1)
Link="https://portswigger-cdn.net/burp/releases/download?product=pro&version=&type=jar"
echo $version
wget "$Link" -O burpsuite_pro_v$version.jar --quiet --show-progress
# Execute Keygenerator
echo 'Starting Keygenerator'
(java -jar loader.jar) &
sleep 2s
# Execute Burp Suite Professional Latest with Key
echo 'Executing Burp Suite Professional Latest with Keyloader'
echo "java --add-opens=java.desktop/javax.swing=ALL-UNNAMED--add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/jdk.internal.org.objectweb.asm=ALL-UNNAMED --add-opens=java.base/jdk.internal.org.objectweb.asm.tree=ALL-UNNAMED --add-opens=java.base/jdk.internal.org.objectweb.asm.Opcodes=ALL-UNNAMED -javaagent:$(pwd)/loader.jar -noverify -jar $(pwd)/burpsuite_pro_v$version.jar &" > Burp
chmod +x Burp
cp Burp /bin/Burp
(./Burp)