Skip to content
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
22 changes: 22 additions & 0 deletions dependencyCheckSuppression.xml
Original file line number Diff line number Diff line change
Expand Up @@ -226,4 +226,26 @@
<packageUrl regex="true">^pkg:maven/org\.postgresql/postgresql@.*$</packageUrl>
<vulnerabilityName>CVE-2025-49146</vulnerabilityName>
</suppress>

<!-- Currently no update is available for the old commons-lang component, so we must suppress. -->
<suppress>
<notes><![CDATA[
file name: commons-lang-2.6.jar
]]></notes>
<packageUrl regex="true">^pkg:maven/commons-lang/commons-lang@.*$</packageUrl>
<vulnerabilityName>CVE-2025-48924</vulnerabilityName>
</suppress>

<!--
GSON is getting flagged for "Connect2id Nimbus JOSE + JWT before 10.0.2 allows a remote attacker
to cause a denial of service via a deeply nested JSON object supplied in a JWT claim set, because of
uncontrolled recursion." Seems like a case of mistaken identity, so suppress it.
-->
<suppress>
<notes><![CDATA[
file name: gson-2.8.9.jar
]]></notes>
<packageUrl regex="true">^pkg:maven/com\.google\.code\.gson/gson@.*$</packageUrl>
<vulnerabilityName>CVE-2025-53864</vulnerabilityName>
</suppress>
</suppressions>
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ apacheDirectoryVersion=2.1.7
apacheMinaVersion=2.2.4

# Usually matches the version specified as a Spring Boot dependency (see springBootVersion below)
apacheTomcatVersion=10.1.42
apacheTomcatVersion=10.1.43

# (mothership) -> json-path -> json-smart -> accessor-smart
# (core) -> graalvm
Expand Down