Skip to content

Commit fd5fc28

Browse files
committed
Block one more gadget type (ehcache, CVE-2019-17267)
Merged from FasterXML/jackson-databind#2460
1 parent 0e47495 commit fd5fc28

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

release-notes/VERSION

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ One more patch release for 1.9.
4343
(reported by [email protected])
4444
* [databind#2449]: Block one more gadget type (cve CVE-2019-14540)
4545
(reported by Kaki K)
46+
* [databind#2460]: Block one mode gadget type (ehcache, CVE-2019-17267)
4647

4748
1.9.13 (14-Jul-2013)
4849

src/mapper/java/org/codehaus/jackson/map/jsontype/impl/SubTypeValidator.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,9 @@ public class SubTypeValidator
8383
// [databind#2341]: jdom/jdom2
8484
s.add("org.jdom.transform.XSLTransformer");
8585
s.add("org.jdom2.transform.XSLTransformer");
86-
// [databind#2387]: EHCache
86+
// [databind#2387], [databind#2460]: EHCache
8787
s.add("net.sf.ehcache.transaction.manager.DefaultTransactionManagerLookup");
88+
s.add("net.sf.ehcache.hibernate.EhcacheJtaTransactionManagerLookup");
8889
// [databind#2389]: logback/jndi
8990
s.add("ch.qos.logback.core.db.JNDIConnectionSource");
9091
// [databind#2410]: HikariCP/metricRegistry config

0 commit comments

Comments
 (0)