Skip to content

Commit

Permalink
Fix #2498
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Oct 12, 2019
1 parent 6c52f58 commit b5a304a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion release-notes/VERSION
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ Unreleased but backported
#2460: Block one more gadget type (ehcache, CVE-2019-17267)
#2462: Block two more gadget types (commons-configuration)
#2469: Block one more gadget type (xalan2)
#2478: Block two more gadget types (commons-dbcp, p6spy)
#2478: Block two more gadget types (commons-dbcp, p6spy, CVE-2019-16942 / CVE-2019-16943)
#2498: Block one more gadget type (log4j-extras/1.2)

2.8.11.4 (25-Jul-2019)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,10 @@ public class SubTypeValidator
s.add("org.apache.commons.dbcp.datasources.SharedPoolDataSource");
s.add("com.p6spy.engine.spy.P6DataSource");

// [databind#2498]: log4j-extras (1.2)
s.add("org.apache.log4j.receivers.db.DriverManagerConnectionSource");
s.add("org.apache.log4j.receivers.db.JNDIConnectionSource");

DEFAULT_NO_DESER_CLASS_NAMES = Collections.unmodifiableSet(s);
}

Expand Down

0 comments on commit b5a304a

Please sign in to comment.