Skip to content

Commit

Permalink
Fix #2032
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed May 11, 2018
1 parent 29c3a1f commit 27b4def
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions release-notes/VERSION
Expand Up @@ -4,6 +4,10 @@ Project: jackson-databind
=== Releases ===
------------------------------------------------------------------------

2.7.9.4 (not yet released)

#2032: Blacklist another serialization gadget (ibatis)

2.7.9.3 (11-Feb-2018)

#1872 `NullPointerException` in `SubTypeValidator.validateSubType` when
Expand Down
Expand Up @@ -54,6 +54,8 @@ public class SubTypeValidator
// [databind#1855]: more 3rd party
s.add("org.apache.tomcat.dbcp.dbcp2.BasicDataSource");
s.add("com.sun.org.apache.bcel.internal.util.ClassLoader");
// [databind#2032]: more 3rd party; data exfiltration via xml parsed ext entities
s.add("org.apache.ibatis.parsing.XPathParser");

DEFAULT_NO_DESER_CLASS_NAMES = Collections.unmodifiableSet(s);
}
Expand Down

0 comments on commit 27b4def

Please sign in to comment.