Skip to content
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
23 changes: 23 additions & 0 deletions dependency-check/global-suppressions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,29 @@
<packageUrl regex="true">^pkg:maven/io\.prometheus/simpleclient.*@.*$</packageUrl>
<cve>CVE-2026-42154</cve>
</suppress>
<suppress>
<notes><![CDATA[
CVE-2026-42154 affects the Prometheus server (Go binary), not Micrometer's Java
Prometheus registry. OWASP dependency-check incorrectly matches the Maven artifact
against cpe:2.3:a:prometheus:prometheus due to the shared "prometheus" name.
Ref: https://github.com/dependency-check/DependencyCheck/issues/8497
]]></notes>
<packageUrl regex="true">^pkg:maven/io\.micrometer/micrometer-registry-prometheus@.*$</packageUrl>
<cve>CVE-2026-42154</cve>
</suppress>
<suppress>
<notes><![CDATA[
These CVEs affect non-Java OpenTelemetry implementations (Go, .NET, and C++).
OWASP dependency-check incorrectly matches the Prometheus Java client's OTel
tracer bridge against cpe:2.3:a:opentelemetry:opentelemetry.
]]></notes>
<packageUrl regex="true">^pkg:maven/io\.prometheus/prometheus-metrics-tracer-otel(-agent)?@.*$</packageUrl>
<cve>CVE-2026-41078</cve>
<cve>CVE-2026-39882</cve>
<cve>CVE-2026-40894</cve>
<cve>CVE-2026-41178</cve>
<cve>CVE-2026-44967</cve>
</suppress>
<suppress>
<notes><![CDATA[
CVE-2026-42582 affects netty-codec-http3 which only exists in the Netty 4.2.x line.
Expand Down
Loading