Skip to content

Commit

Permalink
* #401: Fixed CVE-2020-15250
Browse files Browse the repository at this point in the history
  • Loading branch information
AnastasiiaSergienko committed Nov 17, 2020
1 parent bc61f3b commit 8e8616a
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 5 deletions.
28 changes: 24 additions & 4 deletions doc/changes/changes_4.0.4.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,29 @@
# Exasol Virtual Schemas 4.0.4, released 2020-11-13
# Exasol Virtual Schemas 4.0.4, released 2020-11-17

Code name: Important bugfixes
Code name: Security Update

## Summary

In this release we fixed a few bugs, including a security issue. Please update your adapters as soon as possible.
Classification: High
Please update your adapters as soon as possible!
This release fixes several SQL injection vulnerabilities on the remote database of the virtual schema.
The local Exasol database defining the virtual schema is not affected.

All dialects except for Teradata are affected:
* Amazon AWS Athena
* Amazon AWS Aurora
* Amazon AWS Redshift
* Apache Hive
* Apache Impala
* Generic JDBC-capable RDBMS
* Google BigQuery
* IBM DB2
* Microsoft SQL Server
* MySQL
* Oracle
* PostgreSQL
* SAP HANA
* Sybase

## Documentation

Expand All @@ -26,12 +45,13 @@ In this release we fixed a few bugs, including a security issue. Please update y
## Dependency updates

* Added com.exasol:artifact-reference-checker-maven-plugin:0.3.1
* Added junit:junit:4.13.1 to fix CVE-2020-15250
* Updated com.exasol:virtual-schema-common-jdbc:5.0.4 to 7.0.0
* Updated org.apache.hbase:hbase-server:2.3.0 to 2.3.3
* Updated org.junit.jupiter:junit-jupiter:5.6.2 to 5.7.0
* Updated org.mockito:mockito-junit-jupiter:3.4.6 to 3.6.0
* Updated com.exasol:exasol-jdbc:6.2.5 to 7.0.3
* Updated com.exasol:exasol-testcontainers:2.1.0 to 3.3.0
* Updated com.exasol:exasol-testcontainers:2.1.0 to 3.3.1
* Updated org.postgresql:postgresql:42.2.14 to 42.2.18
* Updated org.apache.hbase:hbase-server:2.3.1 to 2.3.2
* Updated com.microsoft.sqlserver:mssql-jdbc:8.4.0.jre11 to 8.4.1.jre11
Expand Down
17 changes: 16 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
<dependency>
<groupId>com.exasol</groupId>
<artifactId>exasol-testcontainers</artifactId>
<version>3.3.0</version>
<version>3.3.1</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -185,6 +185,14 @@
<version>0.13.0</version>
<scope>test</scope>
</dependency>
<!-- Overrides Junit 4.12 which is used in test containers but contains a security issue:
https://ossindex.sonatype.org/vuln/7ea56ad4-8a8b-4e51-8ed9-5aad83d8efb1 -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-server</artifactId>
Expand Down Expand Up @@ -371,6 +379,13 @@
</goals>
</execution>
</executions>
<configuration>
<excludeVulnerabilityIds>
<!-- Ignores CVE-2020-15250, because we use Java 11 and junit 4.13.1 which contains a fix:
https://ossindex.sonatype.org/vuln/7ea56ad4-8a8b-4e51-8ed9-5aad83d8efb1 -->
<exclude>7ea56ad4-8a8b-4e51-8ed9-5aad83d8efb1</exclude>
</excludeVulnerabilityIds>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
Expand Down

0 comments on commit 8e8616a

Please sign in to comment.