Skip to content

Commit 998efd7

Browse files
committed
Fix #2469
1 parent 41b7f9b commit 998efd7

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

release-notes/VERSION

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Unreleased but backported
1313
(reported by kingkk)
1414
#2460: Block one more gadget type (ehcache, no CVE allocated yet)
1515
#2462: Block two more gadget types (commons-configuration)
16+
#2469: Block one more gadget type (xalan2)
1617

1718
2.8.11.4 (25-Jul-2019)
1819

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

+3
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,9 @@ public class SubTypeValidator
111111
s.add("org.apache.commons.configuration.JNDIConfiguration");
112112
s.add("org.apache.commons.configuration2.JNDIConfiguration");
113113

114+
// [databind#2469]: xalan2
115+
s.add("org.apache.xalan.lib.sql.JNDIConnectionPool");
116+
114117
DEFAULT_NO_DESER_CLASS_NAMES = Collections.unmodifiableSet(s);
115118
}
116119

0 commit comments

Comments
 (0)