Commit 86bdda0 1 parent 814a518 commit 86bdda0 Copy full SHA for 86bdda0
File tree 2 files changed +6
-0
lines changed
src/mapper/java/org/codehaus/jackson/map/jsontype/impl
2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ One more patch release for 1.9.
53
53
* [databind#2642]: Block one more gadget type (javax.swing, CVE-2020-10969)
54
54
* [databind#2648]: Block one more gadget type (shiro-core)
55
55
* [databind#2653]: Block one more gadget type (shiro-core, 2nd class)
56
+ * [databind#2658]: Block one more gadget type (ignite-jta, CVE-2020-10650)
56
57
57
58
1.9.13 (14-Jul-2013)
58
59
Original file line number Diff line number Diff line change @@ -122,6 +122,11 @@ public class SubTypeValidator
122
122
s .add ("org.apache.shiro.realm.jndi.JndiRealmFactory" );
123
123
s .add ("org.apache.shiro.jndi.JndiObjectFactory" );
124
124
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
+
125
130
DEFAULT_NO_DESER_CLASS_NAMES = Collections .unmodifiableSet (s );
126
131
}
127
132
You can’t perform that action at this time.
0 commit comments