Utilities for creating Burp Suite Extensions, including the Burp Extensions API interfaces.
View our AppSec USA 2015 presentaton about this project on SlideShare.
mvn clean install
Add the following Maven dependency to pom.xml:
<dependency>
<groupId>com.codemagi</groupId>
<artifactId>burp-suite-utils</artifactId>
<version>LATEST</version>
</dependency>
Add the Maven Shade Plugin to your project's plugins to create a plugin jar that includes all dependencies:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.3</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
</configuration>
</execution>
</executions>
</plugin>