Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tomsteele/burpbuddy
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
https://github.com/tomsteele/burpbuddy
Last synced: 3 months ago
JSON representation
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
- Host: GitHub
- URL: https://github.com/tomsteele/burpbuddy
- Owner: tomsteele
- License: mit
- Created: 2014-04-29T01:47:50.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2018-11-29T22:00:12.000Z (almost 6 years ago)
- Last Synced: 2024-04-11T00:26:15.170Z (7 months ago)
- Language: Java
- Homepage:
- Size: 266 KB
- Stars: 155
- Watchers: 12
- Forks: 25
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-burp-extensions - Burp Buddy - 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. (Scripting)
README
burpbuddy
=========burpbuddy exposes [Burp Suites's](http://portswigger.net/burp/) 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](https://github.com/tomsteele/burpbuddy/wiki) for more information.
## Requirements
- Java 8
- [BurpSuite](http://portswigger.net/burp/)## Releases
A compiled and packaged Jar file is available [here](https://github.com/tomsteele/burpbuddy/releases/latest).## Building from Source
1. Git clone this repo.
1. Install `gradle` if you don't already have it. (For example,
`$ brew install gradle` on OS X.)
1. Run `$ ./gradlew shadowJar` in the project root to build the `burpbuddy` JAR in
`build/libs/burpbuddy--all.jar`.## Adding burpbuddy to Burp Suite
This is the standard process for adding any JAR Burp extension.
1. In Burp Suite, go to the Extender tab and click the "Add" button.
1. Click "Select file" and navigate to the downloaded or manually built `burpbuddy` JAR.
1. 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."
1. Confirm that `burpbuddy` is running correctly:
`$ curl -i http://127.0.0.1:8001/ping`.