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
113 changes: 109 additions & 4 deletions dependencyCheckSuppression.xml
Original file line number Diff line number Diff line change
Expand Up @@ -319,17 +319,122 @@
-->
<suppress>
<notes><![CDATA[
file name: mcp-spring-webmvc-2.0.0-M3.jar
]]></notes>
file name: mcp-spring-webmvc-2.0.0-M3.jar
]]></notes>
<packageUrl regex="true">^pkg:maven/org\.springframework\.ai/mcp-spring-webmvc@.*$</packageUrl>
<cpe>cpe:/a:vmware:server</cpe>
</suppress>
<suppress>
<notes><![CDATA[
file name: mcp-spring-webmvc-2.0.0-M3.jar
]]></notes>
file name: mcp-spring-webmvc-2.0.0-M3.jar
]]></notes>
<packageUrl regex="true">^pkg:maven/org\.springframework\.ai/mcp-spring-webmvc@.*$</packageUrl>
<cpe>cpe:/a:vmware:vmware_server</cpe>
</suppress>

<!--
False positives: OWASP checker seems to be confusing kiota libraries (https://github.com/microsoft/kiota-java)
with kiota tool (https://github.com/microsoft/kiota/)
-->
<suppress>
<notes><![CDATA[
file name: microsoft-kiota-abstractions-1.9.0.jar
]]></notes>
<packageUrl regex="true">^pkg:maven/com\.microsoft\.kiota/microsoft-kiota-abstractions@.*$</packageUrl>
<cve>CVE-2026-41134</cve>
</suppress>
<suppress>
<notes><![CDATA[
file name: microsoft-kiota-authentication-azure-1.9.0.jar
]]></notes>
<packageUrl regex="true">^pkg:maven/com\.microsoft\.kiota/microsoft-kiota-authentication-azure@.*$</packageUrl>
<cve>CVE-2026-41134</cve>
</suppress>
<suppress>
<notes><![CDATA[
file name: microsoft-kiota-http-okHttp-1.9.0.jar
]]></notes>
<packageUrl regex="true">^pkg:maven/com\.microsoft\.kiota/microsoft-kiota-http-okHttp@.*$</packageUrl>
<cve>CVE-2026-41134</cve>
</suppress>
<suppress>
<notes><![CDATA[
file name: microsoft-kiota-serialization-form-1.9.0.jar
]]></notes>
<packageUrl regex="true">^pkg:maven/com\.microsoft\.kiota/microsoft-kiota-serialization-form@.*$</packageUrl>
<cve>CVE-2026-41134</cve>
</suppress>
<suppress>
<notes><![CDATA[
file name: microsoft-kiota-serialization-json-1.9.0.jar
]]></notes>
<packageUrl regex="true">^pkg:maven/com\.microsoft\.kiota/microsoft-kiota-serialization-json@.*$</packageUrl>
<cve>CVE-2026-41134</cve>
</suppress>
<suppress>
<notes><![CDATA[
file name: microsoft-kiota-serialization-multipart-1.9.0.jar
]]></notes>
<packageUrl regex="true">^pkg:maven/com\.microsoft\.kiota/microsoft-kiota-serialization-multipart@.*$</packageUrl>
<cve>CVE-2026-41134</cve>
</suppress>
<suppress>
<notes><![CDATA[
file name: microsoft-kiota-serialization-text-1.9.0.jar
]]></notes>
<packageUrl regex="true">^pkg:maven/com\.microsoft\.kiota/microsoft-kiota-serialization-text@.*$</packageUrl>
<cve>CVE-2026-41134</cve>
</suppress>

<!--
Checker is confusing json-schema-validator with Nu Html Checker
-->
<suppress>
<notes><![CDATA[
file name: json-schema-validator-3.0.1.jar
]]></notes>
<packageUrl regex="true">^pkg:maven/com\.networknt/json-schema-validator@.*$</packageUrl>
<cve>CVE-2025-15104</cve>
</suppress>

<!--
CVE-2026-33117 against "Azure SDK for Java" might affect these libraries, but we ship the latest and our use case
(requiring server admins to provide credentials) is certainly not vulnerable. Newer versions may allow us to remove
this suppression.
-->
<suppress>
<notes><![CDATA[
file name: azure-core-1.58.0.jar
]]></notes>
<packageUrl regex="true">^pkg:maven/com\.azure/azure-core@.*$</packageUrl>
<cve>CVE-2026-33117</cve>
</suppress>
<suppress>
<notes><![CDATA[
file name: azure-core-http-netty-1.16.4.jar
]]></notes>
<packageUrl regex="true">^pkg:maven/com\.azure/azure-core-http-netty@.*$</packageUrl>
<cpe>cpe:/a:microsoft:azure_sdk_for_java</cpe>
</suppress>
<suppress>
<notes><![CDATA[
file name: azure-identity-1.18.3.jar
]]></notes>
<packageUrl regex="true">^pkg:maven/com\.azure/azure-identity@.*$</packageUrl>
<cpe>cpe:/a:microsoft:azure_identity_sdk</cpe>
</suppress>
<suppress>
<notes><![CDATA[
file name: azure-identity-1.18.3.jar
]]></notes>
<packageUrl regex="true">^pkg:maven/com\.azure/azure-identity@.*$</packageUrl>
<cpe>cpe:/a:microsoft:azure_sdk_for_java</cpe>
</suppress>
<suppress>
<notes><![CDATA[
file name: azure-json-1.5.1.jar
]]></notes>
<packageUrl regex="true">^pkg:maven/com\.azure/azure-json@.*$</packageUrl>
<cpe>cpe:/a:microsoft:azure_sdk_for_java</cpe>
</suppress>
</suppressions>
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ apacheTomcatVersion=11.0.22
asmVersion=9.9.1

# Microsoft library for sending OAuth2-authenticated notification emails via the Microsoft Graph API
azureIdentityVersion=1.18.2
azureIdentityVersion=1.18.3

# Apache Batik -- Batik version needs to be compatible with Apache FOP, but we need to pull in batik-codec separately
batikVersion=1.19
Expand Down