fix(deps): update dependency mysql2 to v3.23.1 [security] - #3124
Open
renovate[bot] wants to merge 1 commit into
Open
fix(deps): update dependency mysql2 to v3.23.1 [security]#3124renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
3.21.1→3.23.1MySQL2: Auth Plugin Downgrade to mysql_clear_password Leaks Plaintext Credentials
GHSA-3f6p-5ww8-9rcr
More information
Details
Summary
A rogue MySQL server (or MITM) can force mysql2 to send credentials in plaintext by requesting an auth switch to
mysql_clear_password. The driver complies without verifying that TLS is active.Details
mysql_clear_passwordis registered as a default standard plugin inlib/commands/auth_switch.js(line 21). When a server sends an AuthSwitchRequest (0xFE) requestingmysql_clear_password, the driver executes it without checking for TLS. The plugin (lib/auth_plugins/mysql_clear_password.js) returnsBuffer.from(password + '\0').Note:
caching_sha2_passwordplugin DOES check for SSL before sending cleartext (line 77). Butmysql_clear_passwordhas no such guard.Attack Scenario
caching_sha2_passwordin handshakemysql_clear_passwordPoC
Rogue MySQL server (Node.js, ~80 lines) that captures plaintext passwords from mysql2 clients. Tested against mysql2 3.20.0. Full PoC available on request.
Suggested Fix
Remove
mysql_clear_passwordfromstandardAuthPlugins, or add a guard requiring TLS/unix socket before allowing cleartext auth.Impact
Severity
CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:H/VI:N/VA:N/SC:N/SI:N/SA:NReferences
This data is provided by OSV and the GitHub Advisory Database (CC-BY 4.0).
MySQL2: Unbounded zlib inflate in compressed MySQL protocol handler allows decompression-bomb DoS
GHSA-rgwj-5xj2-c3m3
More information
Details
Vulnerability Details
File:
lib/compressed_protocol.jsLine: 43 (
zlib.inflate(body, (err, data) => { ... })insidehandleCompressedPacket)Root Cause
When a connection is created with
compress: true(and the server advertisesCLIENT_COMPRESS), every incoming packet is unwrapped byhandleCompressedPacket()inlib/compressed_protocol.js, which calls:No options object (in particular, no
maxOutputLength) is passed. Node's zlib convenience methods defaultmaxOutputLengthtobuffer.kMaxLength, which on this platform isNumber.MAX_SAFE_INTEGER— i.e. effectively unbounded until the process runs out of memory. The 3-byte "length of payload before compression" field in the compressed-packet header is read (packet.readInt24()) but is only used to branch on!== 0; it is never used to cap or validate the actual inflate output size, and the real decompressed size is determined purely by the attacker-supplied deflate stream.Because DEFLATE can reach compression ratios over 1000:1 for crafted repetitive input, an attacker who controls (or MITMs, on a non-TLS connection) the MySQL server endpoint can send a single small compressed packet that expands to gigabytes in the client's memory — a classic decompression-bomb / "zip bomb" applied to MySQL's client-compression protocol.
Attack Scenario
mysql2/mysql2/promiseusingcompress: true(a documented option for reducing bandwidth, commonly used for cloud/WAN DB connections).zlib.inflate()starts allocating memory for the full decompressed output with no ceiling.Impact
Denial of Service of the client application (process crash / OOM) — not the database itself. No authentication bypass or data exposure. Requires
compress: trueplus a malicious/compromised server or MITM position.Vulnerable Code
Recommended Fix
maxOutputLengthmakeszlib.inflateabort withERR_BUFFER_TOO_LARGEas soon as the decompressed size would exceed the cap, routing into the exact same (already-existing)err→connection._handleNetworkError(err)path, so no new error-handling logic is required.Verification
Dynamically confirmed on v3.23.0 (HEAD) using a minimal rogue "MySQL server" built on node-mysql2's own server-mode helpers (
mysql.createServer,Packets.Handshake,connection.writeOk()). The rogue server completes a real handshake advertisingCLIENT_COMPRESS, then writes one raw compressed frame (509,604 bytes on the wire — a zlib deflate of 500 MB of zero bytes, ratio 1028.8:1) directly to the socket. A normalmysql.createConnection({ ..., compress: true })victim client — which never issues any query — had its RSS grow from 74.3 MB to 1115.0 MB after receiving that single packet, before erroring out withPROTOCOL_UNEXPECTED_PACKETonce the client tried to parse the inflated zero-filled buffer as MySQL packets. The memory allocation happens unconditionally before any content validation.Severity
CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:HReferences
This data is provided by OSV and the GitHub Advisory Database (CC-BY 4.0).
Release Notes
sidorares/node-mysql2 (mysql2)
v3.23.1Compare Source
Bug Fixes
v3.23.0Compare Source
Features
v3.22.6Compare Source
Bug Fixes
v3.22.5Compare Source
Bug Fixes
v3.22.4Compare Source
Bug Fixes
v3.22.3Compare Source
Bug Fixes
v3.22.2Compare Source
Bug Fixes
v3.22.1Compare Source
Bug Fixes
v3.22.0Compare Source
Features
Performance Improvements
Configuration
📅 Schedule: (in timezone Europe/Zurich)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.