Skip to content

Commit 9593e16

Browse files
committed
Fix #2478 (cve)
1 parent 998efd7 commit 9593e16

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

release-notes/VERSION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Unreleased but backported
1414
#2460: Block one more gadget type (ehcache, no CVE allocated yet)
1515
#2462: Block two more gadget types (commons-configuration)
1616
#2469: Block one more gadget type (xalan2)
17+
#2478: Block two more gadget types (commons-dbcp, p6spy)
1718

1819
2.8.11.4 (25-Jul-2019)
1920

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,10 @@ public class SubTypeValidator
114114
// [databind#2469]: xalan2
115115
s.add("org.apache.xalan.lib.sql.JNDIConnectionPool");
116116

117+
// [databind#2478]: comons-dbcp, p6spy
118+
s.add("org.apache.commons.dbcp.datasources.SharedPoolDataSource");
119+
s.add("com.p6spy.engine.spy.P6DataSource");
120+
117121
DEFAULT_NO_DESER_CLASS_NAMES = Collections.unmodifiableSet(s);
118122
}
119123

0 commit comments

Comments
 (0)