Skip to content

Commit 27b4def

Browse files
committed
Fix #2032
1 parent 29c3a1f commit 27b4def

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

release-notes/VERSION

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ Project: jackson-databind
44
=== Releases ===
55
------------------------------------------------------------------------
66

7+
2.7.9.4 (not yet released)
8+
9+
#2032: Blacklist another serialization gadget (ibatis)
10+
711
2.7.9.3 (11-Feb-2018)
812

913
#1872 `NullPointerException` in `SubTypeValidator.validateSubType` when

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ public class SubTypeValidator
5454
// [databind#1855]: more 3rd party
5555
s.add("org.apache.tomcat.dbcp.dbcp2.BasicDataSource");
5656
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");
5759

5860
DEFAULT_NO_DESER_CLASS_NAMES = Collections.unmodifiableSet(s);
5961
}

0 commit comments

Comments
 (0)