Skip to content

Commit 073c89f

Browse files
committed
[SPARK-11652][CORE] Remote code execution with InvokerTransformer
Update to Commons Collections 3.2.2 to avoid any potential remote code execution vulnerability Author: Sean Owen <[email protected]> Closes #9731 from srowen/SPARK-11652. (cherry picked from commit 9631ca3) Signed-off-by: Sean Owen <[email protected]>
1 parent 149c4a0 commit 073c89f

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,8 @@
152152
<aws.kinesis.client.version>1.2.1</aws.kinesis.client.version>
153153
<commons.httpclient.version>4.3.2</commons.httpclient.version>
154154
<commons.math3.version>3.4.1</commons.math3.version>
155+
<!-- managed up from 3.2.1 for SPARK-11652 -->
156+
<commons.collections.version>3.2.2</commons.collections.version>
155157
<test_classpath_file>${project.build.directory}/spark-test-classpath.txt</test_classpath_file>
156158
<scala.version>2.10.4</scala.version>
157159
<scala.binary.version>2.10</scala.binary.version>
@@ -418,6 +420,11 @@
418420
<artifactId>commons-math3</artifactId>
419421
<version>${commons.math3.version}</version>
420422
</dependency>
423+
<dependency>
424+
<groupId>org.apache.commons</groupId>
425+
<artifactId>commons-collections</artifactId>
426+
<version>${commons.collections.version}</version>
427+
</dependency>
421428
<dependency>
422429
<groupId>org.apache.ivy</groupId>
423430
<artifactId>ivy</artifactId>

0 commit comments

Comments
 (0)