Skip to content

augustd/burp-suite-utils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status Maven Central Known Vulnerabilities

burp-suite-utils

Utilities for creating Burp Suite Extensions, including the Burp Extensions API interfaces.

View our AppSec USA 2015 presentaton about this project on SlideShare.

Building:

mvn clean install

Usage with Maven:

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>