Skip to content

Commit

Permalink
Fixing issues #2631 and #2634
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Mar 1, 2020
1 parent 05235ac commit 9f4e970
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions release-notes/VERSION-2.x
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ Project: jackson-databind
=== Releases ===
------------------------------------------------------------------------

2.9.10.4 (not yet released)

#2631: Block one more gadget type (shaded-hikari-config, CVE-to-be-allocated)
(reported by threedr3am & LFY)
#2634: Block two more gadget types (ibatis-sqlmap, anteros-core; CVE-to-be-allocated)
(reported by threedr3am & V1ZkRA)

2.9.10.3 (23-Feb-2020)

#2620: Block one more gadget type (xbean-reflect/JNDI - CVE-2020-8840)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,13 @@ public class SubTypeValidator
// [databind#2620]: xbean-reflect
s.add("org.apache.xbean.propertyeditor.JndiConverter");

// [databind#2631]: shaded hikari-config
s.add("org.apache.hadoop.shaded.com.zaxxer.hikari.HikariConfig");

// [databind#2634]: ibatis-sqlmap, anteros-core
s.add("com.ibatis.sqlmap.engine.transaction.jta.JtaTransactionConfig");
s.add("br.com.anteros.dbcp.AnterosDBCPConfig");

DEFAULT_NO_DESER_CLASS_NAMES = Collections.unmodifiableSet(s);
}

Expand Down

0 comments on commit 9f4e970

Please sign in to comment.