Burpsuite pro instilation in Linux( Kali Linux and Parrot OS)
Note First uninstall the old version of Burp Suite community edition if you have any.
sudo apt remove burpsuite
Steps to Install Burp Suite Pro on Linux
Download Burp suite pro from link - Burp Suite pro 2025.6
Extract the zip file and find the java jdk or you can doanloade from official website by clicking the link java 24
First install the java24 and set the evironment variable.
Open a terminal and run the following commands:
sudo apt update sudo mkdir -p /usr/lib/jvm cd Downloads sudo tar -xzf openjdk-24.0.2_linux-x64_bin.tar.gz -C /usr/lib/jvm sudo update-alternatives --install /usr/bin/java java /usr/lib/jvm/jdk-24.0.2/bin/java 1 sudo update-alternatives --install /usr/bin/javac javac /usr/lib/jvm/jdk-24.0.2/bin/javac 1 sudo update-alternatives --config java # Select JDK 24 java -version
Note: Environment variables setup
sudo nano /etc/environment.d/java24.confadd the following lines:
JAVA_HOME="/usr/lib/jvm/jdk-24.0.2"
PATH="$PATH:$JAVA_HOME/bin"Save and exit the file.
source /etc/environment.d/java24.confVerify the installation:
echo $JAVA_HOME # Should show `/usr/lib/jvm/jdk-24.0.2`
java -version # Should show Java 24open the downloaded Burp Suite Pro directory
unzip burpsuite_pro_v2025.6.1.zip
cd burpsuite_pro_v2025.6.1
java -jar burploader.jaropen the burploader.jar file
java -jar burploader.jar

click Next
click on Manual Activation

copy the activation response code and past in activation response code box

click on Next and then Finish. You can see the Burp Suite Pro is installed successfully.

Additional Notes
Installing the ca certification as Firefox CA setup
Last updated