Skip to content

Commit

Permalink
Upgrade Apache Commons Collections to v3.2.2
Browse files Browse the repository at this point in the history
Version 3.2.1 has a CVSS 10.0 vulnerability. That's the worst kind of
vulnerability that exists. By merely existing on the classpath, this
library causes the Java serialization parser for the entire JVM process
to go from being a state machine to a turing machine. A turing machine
with an exec() function!

https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2015-8103
https://commons.apache.org/proper/commons-collections/security-reports.html
http://foxglovesecurity.com/2015/11/06/what-do-weblogic-websphere-jboss-jenkins-opennms-and-your-application-have-in-common-this-vulnerability/
  • Loading branch information
jasonmc committed Mar 8, 2016
1 parent cb2cea1 commit c5c9818
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion NBPlatformApp/MainModule/pom.xml
Expand Up @@ -43,7 +43,7 @@
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>3.2.1</version>
<version>3.2.2</version>
</dependency>
<dependency>
<groupId>net.java.dev.glazedlists</groupId>
Expand Down
2 changes: 1 addition & 1 deletion NBPlatformApp/NoteRepositoryJDBM/pom.xml
Expand Up @@ -64,7 +64,7 @@
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>3.2.1</version>
<version>3.2.2</version>
</dependency>
<dependency>
<artifactId>NoteInterface</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion NBPlatformApp/Synchronization/pom.xml
Expand Up @@ -80,7 +80,7 @@
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>3.2.1</version>
<version>3.2.2</version>
</dependency>
<dependency>
<artifactId>org-openide-modules</artifactId>
Expand Down

0 comments on commit c5c9818

Please sign in to comment.