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
- Host: GitHub
- URL: https://github.com/tkmru/burpsuiteextensiontemplate
- Owner: tkmru
- License: mit
- Created: 2021-06-13T05:00:34.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-07-11T04:12:04.000Z (over 4 years ago)
- Last Synced: 2025-02-01T16:13:26.013Z (8 months ago)
- Topics: burp-extensions, burpsuite
- Language: Java
- Homepage:
- Size: 259 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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