Skip to content

Commit e0bebaa

Browse files
author
Yuriy Bezsonov
committed
fix(cdk): Pin jackson-databind to 2.21.4 to avoid GHSA-5jmj-h7xm-6q6v
jackson-databind 2.22.0 is affected by GHSA-5jmj-h7xm-6q6v (case- insensitive deserialization bypasses per-property @JsonIgnoreProperties) and no patched 2.22.x release exists yet. Downgrade to 2.21.4, the highest release outside the vulnerable range.
1 parent bb9cd01 commit e0bebaa

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

infra/cdk/pom.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,10 @@
104104
<dependency>
105105
<groupId>com.fasterxml.jackson.core</groupId>
106106
<artifactId>jackson-databind</artifactId>
107-
<version>2.22.0</version>
107+
<!-- Pinned to 2.21.4: 2.22.0 is affected by GHSA-5jmj-h7xm-6q6v
108+
(case-insensitive deserialization bypasses per-property
109+
@JsonIgnoreProperties) with no patched 2.22.x release yet. -->
110+
<version>2.21.4</version>
108111
</dependency>
109112

110113
<!-- JSON library for policy parsing -->

0 commit comments

Comments
 (0)