/burpsuite-pro

Burp Suite Professional Edition fully functional & activated

GNU General Public License v3.0GPL-3.0

Downloading files

git clone "https://github.com/iwas-coder/burpsuite-pro" /opt/burpsuite-pro
cd !$
curl -X GET "https://portswigger.net/burp/releases/download?product=pro&version=2021.10.3&type=Jar" -o burp_pro.jar

Activation

Executing the program

For Linux

java --illegal-access=permit -Dfile.encoding=utf-8 -javaagent:loader.jar -noverify -jar burp_pro.jar &

For Windows

java --illegal-access=permit -javaagent:loader.jar -noverify -jar burp_pro.jar &

Generating the License Key

java -jar keygen.jar &
  • Modify License String to something like "licensed to <YOUR_NAME>".
  • Copy the generated License Key from keygen.jar and paste it in Burp Suite Pro.
  • Use Manual Activation.
  • Copy the License Request from Burp Suite Pro and paste it in keygen.jar.
  • Copy the generated License Response from keygen.jar and paste it in Burp Suite Pro.
  • It should activate correctly and start the program.

Creating executable

For Linux

sudo touch /bin/burp

/bin/burp

#!/bin/bash

java --illegal-access=permit -Dfile.encoding=utf-8 -javaagent:loader.jar -noverify -jar burp_pro.jar > /dev/null 2>&1 &
disown
sudo chmod +x /bin/burp

For Windows

touch burp.vbs

burp.vbs

Set oShell = CreateObject ("Wscript.Shell") 
Dim strArgs
strArgs = "cmd /c java --illegal-access=permit -javaagent:loader.jar -noverify -jar burp_pro.jar"
oShell.Run strArgs, 0, false