Skip to content

Commit 25bf7bd

Browse files
committed
Update Jackson
1 parent 6d7cf0d commit 25bf7bd

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

owasp/suppressions.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,12 @@
44
<notes>no YAML content from users is parsed within this service</notes>
55
<cve>CVE-2022-1471</cve>
66
</suppress>
7+
<suppress>
8+
<notes>False positive</notes>
9+
<cve>CVE-2022-45688</cve>
10+
</suppress>
11+
<suppress>
12+
<notes>No fix available, still analyzed</notes>
13+
<cve>CVE-2023-35116</cve>
14+
</suppress>
715
</suppressions>

pom.xml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,17 @@
8787
<dependency>
8888
<groupId>org.springframework.cloud</groupId>
8989
<artifactId>spring-cloud-starter-openfeign</artifactId>
90+
<exclusions>
91+
<exclusion>
92+
<groupId>commons-fileupload</groupId>
93+
<artifactId>commons-fileupload</artifactId>
94+
</exclusion>
95+
</exclusions>
96+
</dependency>
97+
<dependency>
98+
<groupId>commons-fileupload</groupId>
99+
<artifactId>commons-fileupload</artifactId>
100+
<version>1.5</version>
90101
</dependency>
91102
<dependency>
92103
<groupId>io.github.openfeign</groupId>
@@ -120,10 +131,22 @@
120131
<dependency>
121132
<groupId>com.fasterxml.jackson.core</groupId>
122133
<artifactId>jackson-databind</artifactId>
134+
<version>2.15.2</version>
135+
</dependency>
136+
<dependency>
137+
<groupId>com.fasterxml.jackson.core</groupId>
138+
<artifactId>jackson-core</artifactId>
139+
<version>2.15.2</version>
123140
</dependency>
124141
<dependency>
125142
<groupId>com.fasterxml.jackson.datatype</groupId>
126143
<artifactId>jackson-datatype-jsr310</artifactId>
144+
<version>2.15.2</version>
145+
</dependency>
146+
<dependency>
147+
<groupId>com.fasterxml.jackson.core</groupId>
148+
<artifactId>jackson-annotations</artifactId>
149+
<version>2.15.2</version>
127150
</dependency>
128151
<dependency>
129152
<groupId>org.springframework.boot</groupId>

0 commit comments

Comments
 (0)