Skip to content

Commit 862fca9

Browse files
committed
Merge branch '2.7' into 2.8
2 parents 4c93566 + 5f7c69b commit 862fca9

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

release-notes/VERSION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Project: jackson-databind
77

88
#2326: Block one more gadget type (CVE-2019-12086)
99
#2334: Block class for CVE-2019-12384
10+
#2341: Block class for CVE-2019-12814
1011

1112
2.8.11.3 (23-Nov-2018)
1213

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,13 @@ public class SubTypeValidator
8585
// [databind#2326]
8686
s.add("com.mysql.cj.jdbc.admin.MiniAdmin");
8787

88-
// [databind#2334]
88+
// [databind#2334]: logback-core
8989
s.add("ch.qos.logback.core.db.DriverManagerConnectionSource");
9090

91+
// [databind#2341]: jdom/jdom2
92+
s.add("org.jdom.transform.XSLTransformer");
93+
s.add("org.jdom2.transform.XSLTransformer");
94+
9195
DEFAULT_NO_DESER_CLASS_NAMES = Collections.unmodifiableSet(s);
9296
}
9397

0 commit comments

Comments
 (0)