Before & AfterPhotos
View Photo Gallery
sudo mkdir -p /opt/burpsuite sudo mv ~/Downloads/burpsuite_pro_*.jar /opt/burpsuite/ cd /opt/burpsuite Burp Pro requires Java 21+ (Java 23 works well). Check your version:
If you are serious about web application penetration testing, you already know the drill: Burp Suite is the Swiss Army knife. While Kali Linux comes pre-packaged with the Community Edition , the Pro version is a game-changer.
java --version If Java isn't installed or is outdated:
cd ~/Downloads wget https://portswigger-cdn.net/burp/releases/download?product=pro&version=2024.9.1&type=Jar Note: Always check the PortSwigger website for the latest version number. Let's keep things tidy. how to install burp suite pro on kali linux
sudo apt install openjdk-21-jre -y Typing the Java command every time is tedious. Let's create a global launcher.
With Pro, you get automated scanning, rate limiting, the awesome Burp Intruder without throttling, and project persistence.
#!/bin/bash cd /opt/burpsuite java -jar /opt/burpsuite/burpsuite_pro_*.jar Save the file ( Ctrl+X , then Y , then Enter ). Make it executable: java --version If Java isn't installed or is
sudo nano /usr/local/bin/burpsuite-pro Paste the following content:
Burp Suite Pro is a professional tool. Use it on your own applications, on programs you have permission to test (Bug Bounties), or in the PortSwigger Web Security Academy labs. Unauthorized scanning is illegal.
[Desktop Entry] Name=Burp Suite Pro Comment=Web Security Testing Tool Exec=/usr/local/bin/burpsuite-pro Icon=/opt/burpsuite/burp_icon.png Terminal=false Type=Application Categories=Web Application;Security; If you want a proper icon, download one: Let's create a global launcher
sudo chmod +x /usr/local/bin/burpsuite-pro Want to launch it from the Kali application menu? Let's do that.
sudo apt remove burpsuite -y Head over to the official PortSwigger website and download the Linux installer (JAR file).
sudo nano /usr/share/applications/burpsuite-pro.desktop Paste this: