Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

3.x: Suppress GlassFish false positives #9339

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions etc/dependency-check-suppression.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@
<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|jaxb-core|jaxb-runtime|osgi-resource-locator|txw2)@.*$</packageUrl>
<cve>CVE-2024-9329</cve>
</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
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
<version.plugin.source>3.3.0</version.plugin.source>
<version.plugin.spotbugs>4.4.2.2</version.plugin.spotbugs>
<version.plugin.findsecbugs>1.11.0</version.plugin.findsecbugs>
<version.plugin.dependency-check>10.0.2</version.plugin.dependency-check>
<version.plugin.dependency-check>10.0.4</version.plugin.dependency-check>
<version.plugin.surefire>3.0.0</version.plugin.surefire>
<version.plugin.toolchains>1.1</version.plugin.toolchains>
<version.plugin.version-plugin>2.3</version.plugin.version-plugin>
Expand Down
Loading