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

2.x: Suppression for smallrye-open-api-ui #9267

Merged
Merged
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
14 changes: 14 additions & 0 deletions etc/dependency-check-suppression.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@
<suppressions xmlns="https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.3.xsd">
<!-- For information see https://jeremylong.github.io/DependencyCheck/general/suppression.html -->

<!--
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.
Also, this is primarily a developer feature and not intended for a production runtime.
-->

<suppress>
<notes><![CDATA[
file name: smallrye-open-api-ui-2.0.26.jar: swagger-ui-bundle.js
]]></notes>
<packageUrl regex="true">^pkg:javascript/DOMPurify@.*$</packageUrl>
<vulnerabilityName>CVE-2024-45801</vulnerabilityName>
</suppress>

<!-- This CVE is against the etcd server. We ship a Java client -->
<suppress>
<notes><![CDATA[
Expand Down