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
8 changes: 0 additions & 8 deletions .trivyignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,6 @@ GHSA-72hv-8253-57qq exp:2026-09-01
# Availability only (C:N/I:N/A:H). Tracking via UID2-7035; revisit on vert.x 5 migration.
CVE-2026-42577 exp:2026-09-11

# jackson-databind data-binding vulnerability - no upstream fix released yet (fix targets: 2.18.8, 2.21.4, 3.1.4)
# jackson-databind is pulled in transitively via uid2-shared; the version fix is tracked in
# uid2-shared (https://github.com/IABTechLab/uid2-shared/pull/631) and will flow here on the
# next uid2-shared release. Suppressing in the interim.
# See: UID2-7364
CVE-2026-54512 exp:2026-07-25
CVE-2026-54513 exp:2026-07-25

# CVE-2026-2100 — p11-kit NULL dereference via C_DeriveKey in the Alpine base image.
# uid2-admin is a pure Java service; the JVM uses JSSE for TLS and the bundled Java cacerts keystore for trust — it does
# not load the native p11-kit PKCS#11 module loader and never calls C_DeriveKey, so the
Expand Down
11 changes: 10 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
<junit-jupiter.version>5.11.2</junit-jupiter.version>
<uid2-shared.version>11.7.4</uid2-shared.version>
<okta-jwt.version>0.5.10</okta-jwt.version>
<netty.version>4.1.135.Final</netty.version>
<netty.version>4.1.136.Final</netty.version>
<jackson.version>2.21.4</jackson.version>
<image.version>${project.version}</image.version>
</properties>

Expand All @@ -39,6 +40,14 @@

<dependencyManagement>
<dependencies>
<!-- Force jackson to a fixed version to resolve CVE-2026-54512, CVE-2026-54513 (UID2-7569, UID2-7570). -->
<dependency>
<groupId>com.fasterxml.jackson</groupId>
<artifactId>jackson-bom</artifactId>
<version>${jackson.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-bom</artifactId>
Expand Down