Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add owasp dependency-check-maven plugin for server security report #776

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions server/eclipse-project/owasp-dependency-check-suppression.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<?xml version="1.0" encoding="UTF-8"?>
<suppressions xmlns="https://www.owasp.org/index.php/OWASP_Dependency_Check_Suppression">
<suppress>
<!-- This is mistaken data: the cve doesn't affect version 1.3.3 -->
<notes><![CDATA[
file name: commons-fileupload-1.3.3.jar
]]></notes>
<sha1>04ff14d809195b711fd6bcc87e6777f886730ca1</sha1>
<cve>CVE-2016-1000031</cve>
</suppress>
<suppress>
<!-- Mistaken CPE -->
<notes><![CDATA[
file name: ehcache-2.10.3.jar/rest-management-private-classpath/META-INF/maven/org.eclipse.jetty/jetty-io/pom.xml
]]></notes>
<sha1>8e69498dd5f7ed71790aa990f4bc1c72e5515234</sha1>
<cpe>cpe:/a:eclipse:jetty:8.1.15.v20140411</cpe>
</suppress>
<suppress>
<!-- Mistaken CPE -->
<notes><![CDATA[
file name: ehcache-2.10.3.jar/rest-management-private-classpath/META-INF/maven/org.eclipse.jetty/jetty-io/pom.xml
]]></notes>
<sha1>8e69498dd5f7ed71790aa990f4bc1c72e5515234</sha1>
<cpe>cpe:/a:jetty:jetty:8.1.15.v20140411</cpe>
</suppress>
<suppress>
<!-- ColoradoRLA doesn't use Jetty’s password management or WebSockets -->
<notes><![CDATA[
file name: jetty-io-9.4.4.v20170414.jar
]]></notes>
<sha1>4a1da5a31fbfcdf01e0e4b00a6c5aea96d45801f</sha1>
<cve>CVE-2017-9735</cve>
</suppress>
<suppress>
<!-- ColoradoRLA doesn't use Jetty’s password management or WebSockets -->
<notes><![CDATA[
file name: websocket-api-9.4.4.v20170414.jar
]]></notes>
<sha1>83ac5e5ccb73da1c1839805e4d7f284422b7535f</sha1>
<cve>CVE-2017-9735</cve>
</suppress>
<suppress>
<!-- ColoradoRLA doesn't parse XML from untrusted sources -->
<notes><![CDATA[
file name: ehcache-2.10.3.jar/rest-management-private-classpath/META-INF/maven/com.fasterxml.jackson.core/jackson-annotations/pom.xml
]]></notes>
<sha1>bf2a064aec0f86ef110ded6b11147350cfef0bb7</sha1>
<cpe>cpe:/a:fasterxml:jackson:2.3.0</cpe>
</suppress>
</suppressions>
9 changes: 9 additions & 0 deletions server/eclipse-project/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,15 @@
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>1.3.3</version>
<configuration>
<name>Dependency Check</name>
<suppressionFiles>owasp-dependency-check-suppression.xml</suppressionFiles>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
Expand Down