Skip to content

Commit

Permalink
Block one more gadget type (activemq-pool[-jms], CVE-2020-11111)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtokarski-atlassian committed May 8, 2020
1 parent ba1c3b1 commit 71128a4
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions release-notes/VERSION
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ One more patch release for 1.9.
* [databind#2659]: Block one more gadget type (aries.transaction.jms, CVE-2020-10672)
* [databind#2660]: Block one more gadget type (caucho-quercus, CVE-2020-10673)
* [databind#2662]: Block one more gadget type (bus-proxy, CVE-2020-10968)
* [databind#2664]: Block one more gadget type (activemq-pool[-jms], CVE-2020-11111)

1.9.13 (14-Jul-2013)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,18 @@ public class SubTypeValidator
s.add("org.aoju.bus.proxy.provider.RmiProvider");
s.add("org.aoju.bus.proxy.provider.remoting.RmiProvider");

// [databind#2664]: activemq-core, activemq-pool, activemq-pool-jms

s.add("org.apache.activemq.ActiveMQConnectionFactory"); // core
s.add("org.apache.activemq.ActiveMQXAConnectionFactory");
s.add("org.apache.activemq.spring.ActiveMQConnectionFactory");
s.add("org.apache.activemq.spring.ActiveMQXAConnectionFactory");
s.add("org.apache.activemq.pool.JcaPooledConnectionFactory"); // pool
s.add("org.apache.activemq.pool.PooledConnectionFactory");
s.add("org.apache.activemq.pool.XaPooledConnectionFactory");
s.add("org.apache.activemq.jms.pool.XaPooledConnectionFactory"); // pool-jms
s.add("org.apache.activemq.jms.pool.JcaPooledConnectionFactory");

DEFAULT_NO_DESER_CLASS_NAMES = Collections.unmodifiableSet(s);
}

Expand Down

0 comments on commit 71128a4

Please sign in to comment.