Skip to content

Commit c9ef4a1

Browse files
committed
Fix #2334
1 parent b596365 commit c9ef4a1

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

release-notes/VERSION

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Not yet released
88

99
#2326: Block class for CVE-2019-12086
1010
(contributed by MaximilianTews@github)
11+
#2334: Block class for CVE-2019-12384
1112

1213
2.7.9.5 (23-Nov-2018)
1314

src/main/java/com/fasterxml/jackson/databind/jsontype/impl/SubTypeValidator.java

+3
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,9 @@ public class SubTypeValidator
8181

8282
// [databind#2326] (2.7.9.6): one more 3rd party gadget
8383
s.add("com.mysql.cj.jdbc.admin.MiniAdmin");
84+
85+
// [databind#2334] (2.9.9.1): logback-core
86+
s.add("ch.qos.logback.core.db.DriverManagerConnectionSource");
8487

8588
DEFAULT_NO_DESER_CLASS_NAMES = Collections.unmodifiableSet(s);
8689
}

0 commit comments

Comments
 (0)