Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/NetsOSS/headless-burp
Browse files Browse the repository at this point in the history
  • Loading branch information
pajswigger committed Jul 9, 2018
2 parents 6bf2086 + fde4512 commit 30e7403
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 12 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
20 changes: 10 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
<java.version>1.8</java.version>
<dependency-check.skip>false</dependency-check.skip>
<checkstyle-config.location>${project.basedir}</checkstyle-config.location>
<findbugs-excludefilter.location>${project.basedir}/../findbugs-excludefilter.xml
</findbugs-excludefilter.location>
<spotbugs-excludefilter.location>${project.basedir}/../spotbugs-excludefilter.xml
</spotbugs-excludefilter.location>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -66,7 +66,7 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.9.4</version>
<version>2.9.5</version>
</dependency>

<!-- test -->
Expand Down Expand Up @@ -206,15 +206,15 @@
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>3.0.5</version>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>3.1.3</version>
<configuration>
<effort>Max</effort>
<threshold>Low</threshold>
<xmlOutput>true</xmlOutput>
<excludeFilterFile>${findbugs-excludefilter.location}</excludeFilterFile>
<excludeBugsFile>${project.basedir}/findbugs-base.xml</excludeBugsFile>
<excludeFilterFile>${spotbugs-excludefilter.location}</excludeFilterFile>
<excludeBugsFile>${project.basedir}/spotbugs-base.xml</excludeBugsFile>
<plugins>
<plugin>
<groupId>com.h3xstream.findsecbugs</groupId>
Expand Down Expand Up @@ -291,10 +291,10 @@
<id>quick</id>
<properties>
<checkstyle.skip>true</checkstyle.skip>
<findbugs.skip>true</findbugs.skip>
<spotbugs.skip>true</spotbugs.skip>
<dependency-check.skip>true</dependency-check.skip>
</properties>
</profile>
</profiles>

</project>
</project>
File renamed without changes.
11 changes: 9 additions & 2 deletions findbugs-excludefilter.xml → spotbugs-excludefilter.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<FindBugsFilter>
<FindBugsFilter
xmlns="https://github.com/spotbugs/filter/3.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://github.com/spotbugs/filter/3.0.0 https://raw.githubusercontent.com/spotbugs/spotbugs/3.1.0/spotbugs/etc/findbugsfilter.xsd">
<!--headless burp specific exclusions-->
<Match>
<Class name="HelpMojo"/>
Expand All @@ -21,6 +24,10 @@
</Match>
<Match>
<Class name="eu.nets.burp.JUnitXmlGenerator"/>
<Bug code="SECXSLT"/>
<Bug pattern="MALICIOUS_XSLT,URLCONNECTION_SSRF_FD,XXE_DTD_TRANSFORM_FACTORY,XXE_XSLT_TRANSFORM_FACTORY"/>
</Match>
<Match>
<Class name="eu.nets.burp.maven.StreamLog"/>
<Bug pattern="INFORMATION_EXPOSURE_THROUGH_AN_ERROR_MESSAGE"/>
</Match>
</FindBugsFilter>

0 comments on commit 30e7403

Please sign in to comment.