Skip to content

Commit

Permalink
Block one more gadget type (jodd-db, CVE-2018-12022)
Browse files Browse the repository at this point in the history
  • Loading branch information
ablekhman committed Oct 22, 2019
1 parent f2dab6a commit 437750a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions release-notes/VERSION
Expand Up @@ -22,6 +22,7 @@ One more patch release for 1.9.
* [databind#1855]: Blacklist for more serialization gadgets (dbcp/tomcat, spring)
* [databind#1931]: Two more `c3p0` gadgets to exploit default typing issue
* [databind#2032]: Blacklist another serialization gadget (ibatis)
* [databind#2052]: Block one more gadget type (jodd-db, CVE-2018-12022)

1.9.13 (14-Jul-2013)

Expand Down
Expand Up @@ -57,6 +57,9 @@ public class SubTypeValidator
s.add("com.mchange.v2.c3p0.debug.AfterCloseLoggingComboPooledDataSource");
// [databind#2032]: more 3rd party; data exfiltration via xml parsed ext entities
s.add("org.apache.ibatis.parsing.XPathParser");
// [databind#2052]: ldap approaches; in all cases LDAP connection String is passed
// and access attempt is made:
s.add("jodd.db.connection.DataSourceConnectionProvider");

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

0 comments on commit 437750a

Please sign in to comment.