This project provides an easy setup for launching BurpSuite Pro using burploader.jar
. Follow the instructions below to get started and troubleshoot any issues.
Note: This project is not my main focus. I am sharing it because I enjoy helping others, and it’s my passion to make things easier for people.
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
You can download BurpSuite files from the following link: Download BurpSuite
- Java Development Kit (JDK) version 18.0.2.1
- BurpSuite Pro version 2023.2.4
- Download and extract the BurpSuite files from the link above.
- Ensure the JDK is installed and the Java path is set to:
C:\Program Files\Java\jdk-18.0.2.1\bin\java.exe
-
Using Command Line
To start BurpSuite withburploader.jar
, open a terminal or command prompt and run:java -jar burploader.jar
-
Using
burp.bat
Script
Alternatively, you can use the providedburp.bat
file for launching BurpSuite:"C:\Program Files\Java\jdk-18.0.2.1\bin\java.exe" "--add-opens=java.desktop/javax.swing=ALL-UNNAMED" "--add-opens=java.base/java.lang=ALL-UNNAMED" "--add-opens=java.base/jdk.internal.org.objectweb.asm=ALL-UNNAMED" "--add-opens=java.base/jdk.internal.org.objectweb.asm.tree=ALL-UNNAMED" "--add-opens=java.base/jdk.internal.org.objectweb.asm.Opcodes=ALL-UNNAMED" "-javaagent:burploader.jar" "-noverify" "-jar" "C:\Users\user\Desktop\burp\burpsuite_pro_v2023.2.4.jar"
Modify the last part of the path in
burp.bat
if your BurpSuite file is in a different location.
If you encounter issues when launching BurpSuite, follow these steps:
-
Clear BurpSuite Cache
Open Command Prompt and enter the following commands to clear BurpSuite's cached files:rd /s /q "%userprofile%\AppData\Roaming\BurpSuite\"
-
Delete Java Preferences
Remove any existing Java preferences for BurpSuite by running:reg delete "HKEY_CURRENT_USER\SOFTWARE\JavaSoft\Prefs\burp" /f
After clearing the cache and preferences, try running BurpSuite again.
- JDK Path: Ensure that your JDK is installed at
C:\Program Files\Java\jdk-18.0.2.1\bin\java.exe
. - BurpSuite Path: Ensure
burpsuite_pro_v2023.2.4.jar
is correctly located atC:\Users\user\Desktop\burp\
.