Skip to content

sdmrf/BurpSuite-Pro

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Burp Suite Professional

Enhance Your Testing Skills with Burp Suite Professional ~Test like a Pro, with Ignorance is a Bliss as a Motto

BurpSuite-Banner

Disclaimer

This repository is intended solely for educational purposes, or maybe not who knows?

Overview

This repository provides a streamlined method for installing Burp Suite Professional with a single command. While a manual installation guide is also available, we recommend the automated process for convenience.

BurpSuite-Professional

Linux Installation

Prerequisites

Before proceeding with the installation, ensure that the following dependencies are installed on your system:

General Dependencies

  • git - for version control
  • curl or wget - for downloading files

Ubuntu/Debian-based Systems

sudo apt-get install -y openjdk-22-jre openjdk-22-jdk git curl wget

Fedora-based Systems

sudo dnf install -y java-22-openjdk java-22-openjdk-devel git curl wget

CentOS/RHEL-based Systems

sudo yum install -y java-22-openjdk java-22-openjdk-devel git curl wget

Arch-based Systems

sudo pacman -S jdk-openjdk git curl wget

prerequisites

Installation

Automated Installation

To install Burp Suite Professional, run the following command (root user):

curl https://raw.githubusercontent.com/sdmrf/BurpSuite-Pro/main/Linux/install.sh | sudo bash

Note: Make sure to enter your password after running this command as it is executed with root privileges.

installation

Manual Installation

If you prefer a manual installation, follow the steps below:

  1. Clone the repository:
git clone https://github.com/sdmrf/BurpSuite-Pro.git
  1. Change the directory:
cd BurpSuite-Pro/Linux
  1. Run the installation script:
sudo bash install.sh

Usage

To run Burp Suite Professional, execute the following command:

burpsuitepro

usage

Uninstallation

Automated Uninstallation

To uninstall Burp Suite Professional, run the following command (root user):

curl https://raw.githubusercontent.com/sdmrf/BurpSuite-Pro/main/Linux/uninstall.sh | sudo bash

uninstallation

Manual Uninstallation

  1. Change the directory:
cd BurpSuite-Pro/Linux
  1. Run the uninstallation script:
sudo bash uninstall.sh

Update (Optional)

Automated Update

To update Burp Suite Professional, run the following command (root user):

curl https://raw.githubusercontent.com/sdmrf/BurpSuite-Pro/main/Linux/update.sh | sudo bash

Manual Update

  1. Change the directory:
cd BurpSuite-Pro/Linux
  1. Run the update script:
sudo bash update.sh

BurpSuite-Professional

Windows Installation

Prerequisites

Before proceeding with the installation, ensure that the following dependencies are installed on your system:

  • git - for cloning this repository || Download Git

  • Java - for running Burp Suite Professional || Download Java (Optional — installation of latest Java is now included in the script)

  • PowerShell - for executing scripts

usage

Installation

Automated Installation

To install Burp Suite Professional, run the following command:

iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/sdmrf/BurpSuite-Pro/main/Windows/install.ps1'))

usage

Manual Installation

  1. Download the repository:
git clone https://github.com/sdmrf/BurpSuite-Pro.git
  1. Change the directory:
cd BurpSuite-Pro/Windows
  1. Open PowerShell as an administrator and run the following commands:
Set-ExecutionPolicy Unrestricted -Scope Process
  1. Run the installation script:
.\install.ps1

Usage

To run Burp Suite Professional, click on the desktop shortcut.

usage

Alternatively, you can run the script manually:

  1. Change the directory:
cd C:\sdmrf\BurpSuitePro\
  1. Run the script:
.\burpsuite_launcher.vbs

Creating a Shortcut for .vbs File.

(Obsolete — creation of shortcut is now included in the script)

If any problems occur during installation, you can use this method and create a desktop shortcut for it.

  1. Right-click on the Burp-Suite-Pro.vbs file.
  2. Select Send to > Desktop (create shortcut).
  3. Change the shortcut icon:
    • Right-click the shortcut and select Properties.
    • Click Change Icon, browse for the BurpSuitePro.ico file in the repository, and apply the changes.

Uninstallation

Automated Uninstallation

To uninstall Burp Suite Professional, run the following command:

iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/sdmrf/BurpSuite-Pro/main/Windows/uninstall.ps1'))

Manual Uninstallation

  1. Change the directory:
cd BurpSuite-Pro/Windows
  1. Open PowerShell as an administrator and run the following commands:
Set-ExecutionPolicy Unrestricted -Scope Process
  1. Run the uninstallation script:
.\uninstall.ps1

Update (Optional)

Automated Update

To update Burp Suite Professional, run the following command:

iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/sdmrf/BurpSuite-Pro/main/Windows/update.ps1'))

Manual Update

  1. Change the directory:
cd BurpSuite-Pro/Windows
  1. Open PowerShell as an administrator and run the following commands:
Set-ExecutionPolicy Unrestricted -Scope Process
  1. Run the update script:
.\update.ps1

Credits

A special thanks to sdmrf for developing this script and to h3110w0r1d-y for providing the Burp Suite key generation loader.