You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+16-17Lines changed: 16 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,11 +13,17 @@ Since the first commit back in 2016, **burp-rest-api** has been the default tool
13
13
14
14
1) Download the latest *burp-rest-api* JAR (e.g. `burp-rest-api-2.3.2.jar`) from the [release page](https://github.com/vmware/burp-rest-api/releases)
15
15
2) Place them within a directory having the **original** Burp Suite Professional JAR (e.g. *burpsuite_pro_v2025.6.3.jar*). **Important:** This is supposed to be the standalone JAR downloaded from https://portswigger.net/burp/releases. You should NOT use the `burpsuite_pro.jar` from a local Burp Suite installation
16
-
3)On Java 21, run *burp-rest-api* using:
16
+
3)Using **Java 21**, run *burp-rest-api*
17
17
18
-
On Linux, Mac `java --add-opens=java.desktop/javax.swing=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED -cp "burpsuite_pro.jar:burp-rest-api-2.3.2.jar" org.springframework.boot.loader.launch.JarLauncher`
On Windows `java --add-opens=java.desktop/javax.swing=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED -cp "burpsuite_pro.jar;burp-rest-api-2.3.2.jar" org.springframework.boot.loader.launch.JarLauncher`
* Make sure to adjust the Burp Suite PRO and Burp Rest API JAR filenames
@@ -31,36 +37,29 @@ On Windows `java --add-opens=java.desktop/javax.swing=ALL-UNNAMED --add-opens=ja
31
37
32
38
By default, Burp is launched in headless mode with the Proxy running on port 8080/tcp (**localhost only**) and the REST endpoint running on 8090/tcp (**localhost only**).
33
39
34
-
To __run Burp in UI mode__ from the command line, use one of the following commands:
40
+
To __run Burp in UI mode__ from the command line, append the following argument:
35
41
36
42
```
37
-
./burp-rest-api.sh --headless.mode=false
43
+
--headless.mode=false
38
44
```
39
-
40
-
On Java <= 1.8, it is also possible to execute burp-rest-api in the following way:
0 commit comments