Skip to content

Commit

Permalink
Merge pull request #1 from santrancisco/patch-1
Browse files Browse the repository at this point in the history
Added simple instruction to build jar using docker
  • Loading branch information
stephenbradshaw authored Mar 21, 2022
2 parents 903fb49 + 8d6f1c9 commit daba080
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,4 +160,10 @@ You can build the .jar version of the extension to load into Burp using the foll

mvn clean package

For simplicity, you can also use the maven official docker container to build the .jar extension with the following command.

```
docker run -it --rm --name BurpPythonGateway -v "$(pwd)":/usr/src/mymaven -w /usr/src/mymaven maven:3.3-jdk-8 mvn clean package
```

The compiled extension file will be created under `target/` - the jar file with `-with-dependencies` in the name is the one you load into Burp.

0 comments on commit daba080

Please sign in to comment.