This is an automated email from the ASF dual-hosted git repository.
kfaraz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/druid.git
The following commit(s) were added to refs/heads/master by this push:
new 6c96d09680 Suppress some false alarm CVEs (#12812)
6c96d09680 is described below
commit 6c96d096800961dd7399f19c01027b8ea4644e19
Author: Kashif Faraz <[email protected]>
AuthorDate: Fri Jul 22 22:27:31 2022 +0530
Suppress some false alarm CVEs (#12812)
This commit suppresses the following CVEs:
- CVE-2021-43138: false alarm for async-http-client
- CVE-2021-34538: applicable to Hive server
- CVE-2020-25638: requires hibernate update, which causes Hadoop ingestion
failure
- CVE-2021-27568: false alarm for accessors-smart which is a dependency of
json-smart (already suppressed)
---
owasp-dependency-check-suppressions.xml | 29 ++++++++++++++++++++++++++++-
1 file changed, 28 insertions(+), 1 deletion(-)
diff --git a/owasp-dependency-check-suppressions.xml
b/owasp-dependency-check-suppressions.xml
index fb8d6080d7..ea0cfe689b 100644
--- a/owasp-dependency-check-suppressions.xml
+++ b/owasp-dependency-check-suppressions.xml
@@ -73,6 +73,18 @@
<cve>CVE-2021-27568</cve>
<cve>CVE-2021-31684</cve>
</suppress>
+ <suppress>
+ <!--
+ accessors-smart-1.2 is a dependency of json-smart-2.3.
+ owasp seems to flag this too against CVE-2021-27568 for some reason.
+ This can be fixed only when json-smart is upgraded.
+ -->
+ <notes><![CDATA[
+ file name: accessors-smart-1.2.jar
+ ]]></notes>
+ <packageUrl
regex="true">^pkg:maven/net\.minidev/accessors\-smart@.*$</packageUrl>
+ <cve>CVE-2021-27568</cve>
+ </suppress>
<suppress>
@@ -146,6 +158,7 @@
]]></notes>
<packageUrl
regex="true">^pkg:maven/org\.hibernate/hibernate\-validator@.*$</packageUrl>
<cve>CVE-2017-7536</cve>
+ <cve>CVE-2020-25638</cve>
</suppress>
<suppress>
<!-- TODO: Fix by updating curator-x-discovery to > 4.2.0 and updating
hadoop -->
@@ -429,12 +442,16 @@
<cve>CVE-2020-13949</cve>
</suppress>
<suppress>
- <!-- hive-storage-api has the thrift vulnerability too -->
+ <!--
+ 1. hive-storage-api has the thrift vulnerability too
+ 2. CVE-2021-34538 pertains to Hive server.
+ -->
<notes><![CDATA[
file name: hive-storage-api-2.8.1.jar
]]></notes>
<packageUrl
regex="true">^pkg:maven/org\.apache\.hive/[email protected]$</packageUrl>
<cve>CVE-2020-13949</cve>
+ <cve>CVE-2021-34538</cve>
</suppress>
<suppress>
<!--
@@ -510,6 +527,16 @@
<cve>CVE-2021-43138</cve>
</suppress>
+ <suppress>
+ <!-- False alarm for the Async javascript library
(https://github.com/caolan/async) which is a dev dependency for the web console
-->
+ <notes><![CDATA[
+ file name: async-http-client-2.5.3.jar
+ ]]></notes>
+ <packageUrl
regex="true">^pkg:maven/org\.asynchttpclient/[email protected]$</packageUrl>
+ <cve>CVE-2021-43138</cve>
+ </suppress>
+
+
<suppress>
<!-- Jackson CVEs when processing objects of large depth. Consider
updating -->
<notes><![CDATA[
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]