项目作者: augustd

项目描述 :
Utilities for creating Burp Suite Extensions.
高级语言: Java
项目地址: git://github.com/augustd/burp-suite-utils.git
创建时间: 2015-07-22T17:09:36Z
项目社区:https://github.com/augustd/burp-suite-utils

开源协议:Apache License 2.0

下载


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:

  1. <dependency>
  2. <groupId>com.codemagi</groupId>
  3. <artifactId>burp-suite-utils</artifactId>
  4. <version>LATEST</version>
  5. </dependency>

Add the Maven Shade Plugin to your project’s plugins to create a plugin jar that includes all dependencies:

  1. <plugin>
  2. <groupId>org.apache.maven.plugins</groupId>
  3. <artifactId>maven-shade-plugin</artifactId>
  4. <version>2.4.3</version>
  5. <executions>
  6. <execution>
  7. <phase>package</phase>
  8. <goals>
  9. <goal>shade</goal>
  10. </goals>
  11. <configuration>
  12. <createDependencyReducedPom>false</createDependencyReducedPom>
  13. </configuration>
  14. </execution>
  15. </executions>
  16. </plugin>