Skip to content

Commit e1d0f5f

Browse files
committed
Add back a couple OWASP suppressions that didn't show up locally
1 parent ae621d6 commit e1d0f5f

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

dependencyCheckSuppression.xml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,19 @@
8585
<cve>CVE-2006-5391</cve>
8686
</suppress>
8787

88+
<!--
89+
This is a dependency of Java-FPDF, used by the WNPRC billing module for PDF generation, which hasn't been updated
90+
to reference the now-renamed Commons Imaging library instead of the old Sanselan incubator. The CVE is related
91+
to file parsing, not generation, so we're not vulnerable
92+
-->
93+
<suppress>
94+
<notes><![CDATA[
95+
file name: sanselan-0.97-incubator.jar
96+
]]></notes>
97+
<packageUrl regex="true">^pkg:maven/org\.apache\.sanselan/sanselan@.*$</packageUrl>
98+
<vulnerabilityName>CVE-2018-17201</vulnerabilityName>
99+
</suppress>
100+
88101
<!--
89102
suppress CVE-2023-52070 for jfreechart, may become moot after subsequent upgrades
90103
-->
@@ -113,4 +126,17 @@
113126
<packageUrl regex="true">^pkg:maven/commons-lang/commons-lang@.*$</packageUrl>
114127
<vulnerabilityName>CVE-2025-48924</vulnerabilityName>
115128
</suppress>
129+
130+
<!--
131+
GSON is getting flagged for "Connect2id Nimbus JOSE + JWT before 10.0.2 allows a remote attacker
132+
to cause a denial of service via a deeply nested JSON object supplied in a JWT claim set, because of
133+
uncontrolled recursion." Seems like a case of mistaken identity, so suppress it.
134+
-->
135+
<suppress>
136+
<notes><![CDATA[
137+
file name: gson-2.8.9.jar
138+
]]></notes>
139+
<packageUrl regex="true">^pkg:maven/com\.google\.code\.gson/gson@.*$</packageUrl>
140+
<vulnerabilityName>CVE-2025-53864</vulnerabilityName>
141+
</suppress>
116142
</suppressions>

0 commit comments

Comments
 (0)