Skip to content

Commit

Permalink
Added simple instruction to build jar using docker
Browse files Browse the repository at this point in the history
Just because I don't want maven in my machine!!! :) Awesome work bro!
  • Loading branch information
santrancisco authored Mar 21, 2022
1 parent 903fb49 commit 8d6f1c9
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 8d6f1c9

Please sign in to comment.