Method 1: Uninstall using the terminal (if installed using the .sh installer):
- Open the terminal.
- Navigate to the Burp Suite installation directory. By default, it is usually installed in
/opt/BurpSuiteProor/home/yourusername/BurpSuitePro, depending on where you installed it. You can navigate to it using:
cd /path/to/BurpSuitePro- Run the uninstaller script. If the Burp Suite installation includes an uninstaller script, run it using:
./uninstall- If the uninstaller script is not available, simply delete the entire Burp Suite installation directory:
sudo rm -rf /path/to/BurpSuiteProMethod 2: If installed via Snap or APT (less common):
- For Snap:
If you installed Burp Suite Professional using Snap, remove it by running:
sudo snap remove burpsuite- For APT:
If you used APT to install Burp Suite (which is unlikely for the professional edition), remove it using:
sudo apt remove burpsuiteMethod 3: Uninstall if you used a .deb package:
- Check installed packages:
If you installed Burp Suite via a .deb package, list installed packages using:
dpkg --list | grep burpsuite- Uninstall the package:
Run the following command to uninstall it:
sudo apt remove burpsuiteMethod 4: Remove desktop entry and configurations:
If you created a desktop entry or configuration files for Burp Suite, remove them:
rm ~/.local/share/applications/burpsuite.desktop
rm -rf ~/.BurpSuiteAfter following the appropriate method, Burp Suite Professional will be uninstalled from your Ubuntu system.