Skip to content

Commit

Permalink
Suppress glassfish false positive
Browse files Browse the repository at this point in the history
  • Loading branch information
barchetta committed Oct 8, 2024
1 parent aa87dd4 commit 1a55f94
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions etc/dependency-check-suppression.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,28 @@
<suppressions xmlns="https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.3.xsd">
<!-- For information see https://jeremylong.github.io/DependencyCheck/general/suppression.html -->

<!-- False Positive
This CVE is against the GlassFish application server, but is mistakenly being
identified in various org.glassfish artifacts
https://github.com/jeremylong/DependencyCheck/issues/7021
https://github.com/jeremylong/DependencyCheck/issues/7020
https://github.com/jeremylong/DependencyCheck/issues/7019
-->
<suppress>
<notes><![CDATA[
file name: jakarta.el-4.0.2.jar
]]></notes>
<packageUrl regex="true">^pkg:maven/org\.glassfish.*/(jakarta\.el|jakarta\.json-api|jsonp-jaxrs|jakarta\.json/jakarta\.json-api|jakarta\.json|jaxb-core|jaxb-runtime|osgi-resource-locator|txw2)@.*$</packageUrl>
<cve>CVE-2024-9329</cve>
</suppress>
<suppress>
<notes><![CDATA[
file name: jakarta.json-api-1.1.6.jar
]]></notes>
<packageUrl regex="true">^pkg:maven/jakarta\.json/jakarta\.json-api@.*$</packageUrl>
<cpe>cpe:/a:eclipse:glassfish</cpe>
</suppress>

<!--
This CVE is against DOMPurify brought in by javascript in the smallrye UI component.
In 4.x we made this component "provided". We can't do that in 2.x and 3.x due to compatiblity concerns.
Expand Down

0 comments on commit 1a55f94

Please sign in to comment.