Skip to content

Commit

Permalink
Suppress warning for CVE-2023-35116 as there is no fix for this issue…
Browse files Browse the repository at this point in the history
… and it is not considered a CVE according to discussion in FasterXML/jackson-databind#3972
  • Loading branch information
jframe committed Jun 19, 2023
1 parent 38e6e4d commit 9a24b8f
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions gradle/owasp-suppression.xml
@@ -1,15 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<suppressions xmlns="https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.3.xsd">
<!-- See https://jeremylong.github.io/DependencyCheck/general/suppression.html for examples -->

<suppress>
<notes><![CDATA[
Suppress false positive for CVE-2020-8908 as it is only applicable for versions up to 30.0. We use 31.1.
Our code does not use com.google.common.io.Files.createTempDir() as well.
- https://nvd.nist.gov/vuln/detail/cve-2020-8908
- https://github.com/jeremylong/DependencyCheck/issues/5526
- https://github.com/google/guava/issues/4011
Suppress CVE-2023-35116 as this is not considered a CVE according to discussion in https://github.com/FasterXML/jackson-databind/issues/3972
]]></notes>
<cve>CVE-2020-8908</cve>
<packageUrl regex="true">^pkg:maven/com\.fasterxml\.jackson\.core/jackson\-databind@.*$</packageUrl>
<vulnerabilityName>CVE-2023-35116</vulnerabilityName>
</suppress>
</suppressions>

0 comments on commit 9a24b8f

Please sign in to comment.