Skip to content

Commit 458541d

Browse files
committed
Merge branch '2.9' into 2.10
2 parents c1a2d7f + 05d7e0e commit 458541d

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

release-notes/VERSION-2.x

+6
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,12 @@ Project: jackson-databind
202202
(reported by Srikanth Ramu)
203203
#2660: Block one more gadget type (caucho-quercus, CVE-2020-10673)
204204
(reported by threedr3am'follower)
205+
#2662: Block one more gadget type (bus-proxy)
206+
(reported by XuYuanzhen)
207+
#2664: Block one more gadget type (activemq)
208+
(reported by Srikanth Ramu)
209+
#2666: Block one more gadget type (apache/commons-proxy)
210+
(reported by Yiting Fan)
205211

206212
2.9.10.3 (23-Feb-2020)
207213

src/main/java/com/fasterxml/jackson/databind/jsontype/impl/SubTypeValidator.java

+11-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,17 @@ public class SubTypeValidator
153153

154154
// [databind#2660]: caucho-quercus
155155
s.add("com.caucho.config.types.ResourceRef");
156-
156+
157+
// [databind#2662]: aoju/bus-proxy
158+
s.add("org.aoju.bus.proxy.provider.RmiProvider");
159+
s.add("org.aoju.bus.proxy.provider.remoting.RmiProvider");
160+
161+
// [databind#2664]: activemq-jms
162+
s.add("org.apache.activemq.jms.pool.XaPooledConnectionFactory");
163+
164+
// [databind#2666]: apache/commons-jms
165+
s.add("org.apache.commons.proxy.provider.remoting.RmiProvider");
166+
157167
DEFAULT_NO_DESER_CLASS_NAMES = Collections.unmodifiableSet(s);
158168
}
159169

0 commit comments

Comments
 (0)