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
7 changes: 0 additions & 7 deletions .trivyignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,3 @@
# jackson-core async parser DoS - not exploitable, services only use synchronous ObjectMapper API
# See: UID2-6670
GHSA-72hv-8253-57qq exp:2026-09-01

# jackson-databind polymorphic deserialization bypass - not exploitable, uid2-shared does not enable polymorphic
# typing (no @JsonTypeInfo, enableDefaultTyping, or PolymorphicTypeValidator usage). No upstream fix released yet
# (fix targets: 2.18.8, 2.21.4, 3.1.4; latest available: 2.18.4).
# See: UID2-7364
CVE-2026-54512 exp:2026-07-25
CVE-2026-54513 exp:2026-07-25
13 changes: 11 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,20 @@
<vertx.version>4.5.21</vertx.version>
<!-- check micrometer.version vertx-micrometer-metrics consumes before bumping up -->
<micrometer.version>1.12.2</micrometer.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>
<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 Expand Up @@ -209,7 +218,7 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.14.2</version>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
Expand Down
Loading