Skip to content

Commit

Permalink
Suppress CVEs for Solr and org.codehaus.jackson (#11030)
Browse files Browse the repository at this point in the history
* Suppress CVEs for Solr and org.codehaus.jackson

* add a comment
  • Loading branch information
jihoonson committed Mar 24, 2021
1 parent f135d19 commit 83a0624
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions owasp-dependency-check-suppressions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -305,4 +305,24 @@
<packageUrl regex="true">^pkg:maven/org\.apache\.thrift/[email protected]$</packageUrl>
<cve>CVE-2020-13949</cve>
</suppress>
<suppress>
<!-- (ranger, ambari, and aliyun-oss) these vulnerabilities are legit, but their latest releases still use the vulnerable jackson version -->
<notes><![CDATA[
file name: jackson-xc-1.9.x.jar or jackson-jaxrs-1.9.x.jar
]]></notes>
<packageUrl regex="true">^pkg:maven/org\.codehaus\.jackson/jackson-(xc|jaxrs)@1.9.*$</packageUrl>
<cve>CVE-2018-14718</cve>
<cve>CVE-2018-7489</cve>
</suppress>

<suppress>
<notes><![CDATA[
file name: solr-solrj-7.7.1.jar
]]></notes>
<packageUrl regex="true">^pkg:maven/org\.apache\.solr/[email protected]$</packageUrl>
<cve>CVE-2020-13957</cve>
<cve>CVE-2019-17558</cve>
<cve>CVE-2019-0193</cve>
<cve>CVE-2020-13941</cve>
</suppress>
</suppressions>

0 comments on commit 83a0624

Please sign in to comment.