Skip to content

Commit 86bdda0

Browse files
Block one more gadget type (ignite-jta, CVE-2020-10650)
Merged from FasterXML/jackson-databind#2658
1 parent 814a518 commit 86bdda0

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

release-notes/VERSION

+1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ One more patch release for 1.9.
5353
* [databind#2642]: Block one more gadget type (javax.swing, CVE-2020-10969)
5454
* [databind#2648]: Block one more gadget type (shiro-core)
5555
* [databind#2653]: Block one more gadget type (shiro-core, 2nd class)
56+
* [databind#2658]: Block one more gadget type (ignite-jta, CVE-2020-10650)
5657

5758
1.9.13 (14-Jul-2013)
5859

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

+5
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,11 @@ public class SubTypeValidator
122122
s.add("org.apache.shiro.realm.jndi.JndiRealmFactory");
123123
s.add("org.apache.shiro.jndi.JndiObjectFactory");
124124

125+
// [databind#2658]: ignite-jta (, quartz-core)
126+
s.add("org.apache.ignite.cache.jta.jndi.CacheJndiTmLookup");
127+
s.add("org.apache.ignite.cache.jta.jndi.CacheJndiTmFactory");
128+
s.add("org.quartz.utils.JNDIConnectionProvider");
129+
125130
DEFAULT_NO_DESER_CLASS_NAMES = Collections.unmodifiableSet(s);
126131
}
127132

0 commit comments

Comments
 (0)