File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
src/main/java/com/fasterxml/jackson/databind/jsontype/impl Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ Project: jackson-databind
7
7
8
8
#2326: Block one more gadget type (CVE-2019-12086)
9
9
#2334: Block class for CVE-2019-12384
10
+ #2341: Block class for CVE-2019-12814
10
11
11
12
2.8.11.3 (23-Nov-2018)
12
13
Original file line number Diff line number Diff line change @@ -85,9 +85,13 @@ public class SubTypeValidator
85
85
// [databind#2326]
86
86
s .add ("com.mysql.cj.jdbc.admin.MiniAdmin" );
87
87
88
- // [databind#2334]
88
+ // [databind#2334]: logback-core
89
89
s .add ("ch.qos.logback.core.db.DriverManagerConnectionSource" );
90
90
91
+ // [databind#2341]: jdom/jdom2
92
+ s .add ("org.jdom.transform.XSLTransformer" );
93
+ s .add ("org.jdom2.transform.XSLTransformer" );
94
+
91
95
DEFAULT_NO_DESER_CLASS_NAMES = Collections .unmodifiableSet (s );
92
96
}
93
97
You can’t perform that action at this time.
0 commit comments