An open API service indexing awesome lists of open source software.

https://github.com/tkmru/burpsuiteextensiontemplate

Template codes for burp extension developers
https://github.com/tkmru/burpsuiteextensiontemplate

burp-extensions burpsuite

Last synced: 7 months ago
JSON representation

Template codes for burp extension developers

Awesome Lists containing this project

README

          

# Burp Suite Extension Template

Template codes for burp extension developers.

## Motivation
As far as I could find, there is no sample extension that describes how to set up github actions and build by command line. Therefore, I created it.

## Installation
In Burp, go to the Extender tool, and the Extensions tab, and add a new extension. Select the extension type "Java", and specify the location of your JAR file.

## How to Build
### IntelliJ IDEA
If you are using intellij, you can build it with the following steps.

1. Open the Project Structure dialog: `File` -> `Project Structure`
2. Set target artifact: `Artifacts` -> `Add` -> `JAR` -> `From modules with dependencies...`
3. Close the Create JAR from Modules dialog: `OK`
4. Close the Project Structure dialog: `Apply` -> `OK`
5. Build JAR: `Build` -> `Build Artifacts` -> `Example:jar` -> `Build`

### Command line

```
$ mvn install
```

## Usage
A menu is added. It's available from HTTP History tab.

Click on the menu to output the log.

A tab will also be added, when you add an extension.

## LICENSE

MIT License

Copyright (C) 2021 tkmru