File tree 2 files changed +6
-0
lines changed
src/main/java/com/fasterxml/jackson/databind/jsontype/impl
2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ Project: jackson-databind
4
4
=== Releases ===
5
5
------------------------------------------------------------------------
6
6
7
+ 2.7.9.4 (not yet released)
8
+
9
+ #2032: Blacklist another serialization gadget (ibatis)
10
+
7
11
2.7.9.3 (11-Feb-2018)
8
12
9
13
#1872 `NullPointerException` in `SubTypeValidator.validateSubType` when
Original file line number Diff line number Diff line change @@ -54,6 +54,8 @@ public class SubTypeValidator
54
54
// [databind#1855]: more 3rd party
55
55
s .add ("org.apache.tomcat.dbcp.dbcp2.BasicDataSource" );
56
56
s .add ("com.sun.org.apache.bcel.internal.util.ClassLoader" );
57
+ // [databind#2032]: more 3rd party; data exfiltration via xml parsed ext entities
58
+ s .add ("org.apache.ibatis.parsing.XPathParser" );
57
59
58
60
DEFAULT_NO_DESER_CLASS_NAMES = Collections .unmodifiableSet (s );
59
61
}
You can’t perform that action at this time.
0 commit comments