Skip to content

Commit

Permalink
Update dependency versions and suppress OWASP false positives
Browse files Browse the repository at this point in the history
  • Loading branch information
bdemers committed May 10, 2019
1 parent 5752a22 commit e4648e5
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@
<packaging>pom</packaging>

<properties>
<spring-boot.version>2.1.2.RELEASE</spring-boot.version>
<spring-cloud.version>2.0.2.RELEASE</spring-cloud.version>
<spring-boot.version>2.1.4.RELEASE</spring-boot.version>
<spring-cloud.version>2.1.2.RELEASE</spring-cloud.version>
<github.slug>okta/okta-spring-boot</github.slug>
<okta.sdk.version>1.4.1</okta.sdk.version>
<okta.sdk.version>1.5.2</okta.sdk.version>
<okta.commons.version>1.1.1</okta.commons.version>
</properties>

Expand Down
24 changes: 24 additions & 0 deletions src/owasp/owasp-suppression.xml
Original file line number Diff line number Diff line change
Expand Up @@ -113,4 +113,28 @@
<cpe>cpe:/a:netty_project:netty</cpe>
</suppress>

<!-- https://pivotal.io/security/cve-2018-1258
Update to 5.0.5.RELEASE+ or Spring Boot 2.0.2.RELEASE+
(Wrong version detected by OWASP plugin) -->
<suppress>
<notes><![CDATA[ file name: spring-security-core-5.1.5.RELEASE.jar ]]></notes>
<gav regex="true">^org\.springframework\.security:spring-security-.*:5.1.*$</gav>
<cve>CVE-2018-1258</cve>
</suppress>
<suppress>
<notes><![CDATA[ file name: spring-boot-starter-security-2.1.4.RELEASE.jar ]]></notes>
<gav regex="true">^org\.springframework\.boot:spring-boot-starter-security:2.1.*$</gav>
<cve>CVE-2018-1258</cve>
</suppress>

<!-- https://nvd.nist.gov/vuln/detail/CVE-2019-0232
https://tomcat.apache.org/security-9.html#Apache_Tomcat_9.x_vulnerabilities
Windows + CGI issue, CGI is disabled by default, and we are only using tomcat in our ITs.
-->
<suppress>
<notes><![CDATA[ file name: tomcat-embed-core-9.0.17.jar ]]></notes>
<gav regex="true">^org\.apache\.tomcat\.embed:tomcat-embed-.*:.*$</gav>
<cve>CVE-2019-0232</cve>
</suppress>

</suppressions>

0 comments on commit e4648e5

Please sign in to comment.