Skip to content

Commit 0e47495

Browse files
committed
Block one more gadget type (HikariCP, CVE-2019-14439 / CVE-2019-16335)
Merged from FasterXML/jackson-databind#2449
1 parent 3b62b24 commit 0e47495

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

release-notes/VERSION

+4-2
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,11 @@ One more patch release for 1.9.
3838
* [databind#2389]: Block yet another deserialization gadget (CVE-2019-14439)
3939
(reported by xiexq)
4040
* [databind#2410]: Block one more gadget type (CVE-2019-14540)
41-
(reported by iSafeBlue@github / [email protected])
41+
(reported by iSafeBlue@github / [email protected])
4242
* [databind#2420]: Block one more gadget type (no CVE allocated yet)
43-
(reported by [email protected])
43+
(reported by [email protected])
44+
* [databind#2449]: Block one more gadget type (cve CVE-2019-14540)
45+
(reported by Kaki K)
4446

4547
1.9.13 (14-Jul-2013)
4648

src/mapper/java/org/codehaus/jackson/map/jsontype/impl/SubTypeValidator.java

+2
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@ public class SubTypeValidator
8989
s.add("ch.qos.logback.core.db.JNDIConnectionSource");
9090
// [databind#2410]: HikariCP/metricRegistry config
9191
s.add("com.zaxxer.hikari.HikariConfig");
92+
// [databind#2449]: and sub-class thereof
93+
s.add("com.zaxxer.hikari.HikariDataSource");
9294
// [databind#2420]: CXF/JAX-RS provider/XSLT
9395
s.add("org.apache.cxf.jaxrs.provider.XSLTJaxbProvider");
9496

0 commit comments

Comments
 (0)