Skip to content

Commit

Permalink
Merge pull request #156 from AlessandroCotto/release_2.2.0
Browse files Browse the repository at this point in the history
Prepare for 2.2.0 release
  • Loading branch information
ikkisoft authored Jul 6, 2022
2 parents 62f4aa3 + 757e2ac commit 6a6ebad
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Since the first commit back in 2016, **burp-rest-api** has been the default tool

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

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)
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)
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
3) On Linux and Mac, mark the launcher as executable using `chmod +x burp-rest-api.sh`
4) Bootstrap the system using either `./burp-rest-api.sh` or `./burp-rest-api.bat`, depending on the operating system
Expand All @@ -30,7 +30,7 @@ To __run Burp in UI mode__ from the command line, use one of the following comma
On Java <= 1.8, it is also possible to execute burp-rest-api in the following way:

```
java -jar burp-rest-api-2.1.0.jar --headless.mode=false --burp.jar=./lib/burpsuite_pro.jar
java -jar burp-rest-api-2.2.0.jar --headless.mode=false --burp.jar=./lib/burpsuite_pro.jar
```

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

The version number of the JAR should match the version number from `build.gradle` while generating the JAR.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'

final def extensionName = 'burp-rest-api'
version = '2.1.0'
version = '2.2.0'

def updateVersion() {
def configFile = new File('src/main/resources/application.yml')
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ server:
headless:
mode: ${java.awt.headless}

build.version: 2.1.0
build.version: 2.2.0

0 comments on commit 6a6ebad

Please sign in to comment.