Skip to content
This repository was archived by the owner on Jan 20, 2026. It is now read-only.

Commit 6a6ebad

Browse files
authored
Merge pull request #156 from AlessandroCotto/release_2.2.0
Prepare for 2.2.0 release
2 parents 62f4aa3 + 757e2ac commit 6a6ebad

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Since the first commit back in 2016, **burp-rest-api** has been the default tool
88

99
## Getting Started (or "How To Run burp-rest-api")
1010

11-
1) Download the latest *burp-rest-api* JAR (e.g. `burp-rest-api-2.1.0.jar`) and the launcher `burp-rest-api.{sh,bat}` script from the [release page](https://github.com/vmware/burp-rest-api/releases)
11+
1) Download the latest *burp-rest-api* JAR (e.g. `burp-rest-api-2.2.0.jar`) and the launcher `burp-rest-api.{sh,bat}` script from the [release page](https://github.com/vmware/burp-rest-api/releases)
1212
2) Place them within a directory having the original Burp Suite Professional JAR (e.g. *burpsuite_pro_v2020.2.1.jar*). Please note that the actual JAR filename doesn't matter since the launcher will include all JARs in the classpath
1313
3) On Linux and Mac, mark the launcher as executable using `chmod +x burp-rest-api.sh`
1414
4) Bootstrap the system using either `./burp-rest-api.sh` or `./burp-rest-api.bat`, depending on the operating system
@@ -30,7 +30,7 @@ To __run Burp in UI mode__ from the command line, use one of the following comma
3030
On Java <= 1.8, it is also possible to execute burp-rest-api in the following way:
3131

3232
```
33-
java -jar burp-rest-api-2.1.0.jar --headless.mode=false --burp.jar=./lib/burpsuite_pro.jar
33+
java -jar burp-rest-api-2.2.0.jar --headless.mode=false --burp.jar=./lib/burpsuite_pro.jar
3434
```
3535

3636
To __modify the server port__ on which the API is accessible, use one of the following commands:
@@ -141,7 +141,7 @@ The following section contains useful information to get started with the develo
141141
# build the jar
142142
./gradlew clean build
143143
# and run it (Java <= 1.8 only!)
144-
java -jar build/libs/burp-rest-api-2.1.0.jar --burp.jar=./lib/burpsuite_pro.jar
144+
java -jar build/libs/burp-rest-api-2.2.0.jar --burp.jar=./lib/burpsuite_pro.jar
145145
```
146146

147147
The version number of the JAR should match the version number from `build.gradle` while generating the JAR.

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ apply plugin: 'eclipse'
1515
apply plugin: 'org.springframework.boot'
1616

1717
final def extensionName = 'burp-rest-api'
18-
version = '2.1.0'
18+
version = '2.2.0'
1919

2020
def updateVersion() {
2121
def configFile = new File('src/main/resources/application.yml')

src/main/resources/application.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ server:
99
headless:
1010
mode: ${java.awt.headless}
1111

12-
build.version: 2.1.0
12+
build.version: 2.2.0

0 commit comments

Comments
 (0)