GHSA-xvr9-35cr-46v9: SQL Injection
Summary
The connector encodes and decodes all character data assuming the connection character set is UTF-8. A server can change charactersetclient mid-session to a non-UTF-8 charset, after which the driver and server interpret the same bytes under different encodings, causing silent data corruption and a client/server charset-confusion mismatch.
Details
The driver encodes and decodes all character data on the assumption that the connection character set is UTF-8. Charset can be changed by commands like SET NAMES... commands.
If the new charset is not UTF-8, the driver continues to read and write UTF-8 while the server interprets the same bytes under a different encoding. The result is silent data corruption and a client/server charset-confusion mismatch. Charset confusion of this kind is also the primitive that can defeat byte-wise quoting/escaping when client and server disagree on a multi-byte encoding.
Impact
Silent data corruption and a client/server encoding mismatch once the connection's charset diverges from UTF-8. Because the mismatch undermines the assumption that quoting/escaping operates on UTF-8 bytes, it belongs to the charset-confusion class that can lead to SQL injection.
Patches
Fixed in 2.7.14, 3.3.5, 3.4.3, and 3.5.9. Upgrade to the patched release on your branch (3.5.x → 3.5.9, 3.4.x → 3.4.3, 3.0/3.1/3.2/3.3.x → 3.3.5, 2.x → 2.7.14). Once the connection is fully initialized, any subsequent charset change to a value that is not utf8 / utf8mb3 / utf8mb4 is rejected: the driver raises a SQLException with SQLState 08000 (connection exception) and closes the connection rather than continuing to exchange data under a mismatched encoding.
Workarounds
There is no reliable application-level workaround.
Credit
Reported by Yalguun Tumenkhuu (@fg0x0).
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
maven/org.mariadb.jdbc:mariadb-java-clientto a version that resolves this vulnerability.Fixed in 3.5.9 - Upgrade
Upgrade
maven/org.mariadb.jdbc:mariadb-java-clientto a version that resolves this vulnerability.Fixed in 3.4.3 - Upgrade
Upgrade
maven/org.mariadb.jdbc:mariadb-java-clientto a version that resolves this vulnerability.Fixed in 3.3.5 - Upgrade
Upgrade
maven/org.mariadb.jdbc:mariadb-java-clientto a version that resolves this vulnerability.Fixed in 2.7.14 - Upgrade
Upgrade to a fixed release to a version that resolves this vulnerability.
Fixed in 2.7.14 - Upgrade
Upgrade to a fixed release to a version that resolves this vulnerability.
Fixed in 3.3.5 - Upgrade
Upgrade to a fixed release to a version that resolves this vulnerability.
Fixed in 3.4.3 - Upgrade
Upgrade to a fixed release to a version that resolves this vulnerability.
Fixed in 3.5.9
Event History
Frequently Asked Questions
Which deployments are exposed to the charset mismatch?
Deployments using the MariaDB Java client are exposed when a connection’s character set is changed mid-session from UTF-8 to a non-UTF-8 charset. The driver continues to encode and decode as UTF-8 while the server interprets bytes using the new character set.
What condition is required for the issue to occur?
The connection character set must diverge from UTF-8, such as through a SET NAMES command or another change to character_set_client. Without that mid-session charset change, the described client/server encoding mismatch does not occur.
How can teams determine whether they may already be affected?
Review application and session initialization SQL for SET NAMES or other commands that change the client character set to a non-UTF-8 value. Silent corruption of character data after such a change is an indicator that the driver and server are interpreting the same bytes differently.