burpbuddy exposes Burp Suites's extender API over the network through various mediums, with the goal of enabling development in any language without the restrictions of the JVM. See the wiki for more information.
- Java 8
- BurpSuite
A compiled and packaged Jar file is available here.
- Git clone this repo.
- Install
gradle
if you don't already have it. (For example,$ brew install gradle
on OS X.) - Run
$ ./gradlew shadowJar
in the project root to build theburpbuddy
JAR inbuild/libs/burpbuddy-<VERSION>-all.jar
.
This is the standard process for adding any JAR Burp extension.
- In Burp Suite, go to the Extender tab and click the "Add" button.
- Click "Select file" and navigate to the downloaded or manually built
burpbuddy
JAR. - You should see a message that the extension has successfully been loaded and an Output message in the message box like: "HTTP Server started on 127.0.0.1:8001."
- Confirm that
burpbuddy
is running correctly:$ curl -i http://127.0.0.1:8001/ping
.