๐Ÿ” CVE Alert

CVE-2026-53937

MEDIUM 6.2

MCP Kotlin SDK's unbounded line buffer in StdioServerTransport/StdioClientTransport leads to memory exhaustion (DoS)

CVSS Score
6.2
EPSS Score
0.0%
EPSS Percentile
0th

MCP Kotlin SDK is the Kotlin Multiplatform software development kit for the Model Context Protocol. In versions 0.7.0 through 0.12.0, `ReadBuffer.append` in `kotlin-sdk-core/src/commonMain/kotlin/io/modelcontextprotocol/kotlin/sdk/shared/ReadBuffer.kt` writes every chunk of bytes received from the stdio transport into a `kotlinx.io.Buffer` with no size cap. Frames are extracted from that buffer only when a `\n` (0x0a) byte is observed. A peer that streams bytes without ever sending a newline causes the internal buffer to grow indefinitely until the JVM (or the surrounding host process) is OOM-killed. The leak is amplified by `StdioServerTransport` and `StdioClientTransport`, which both queue raw chunks through a `kotlinx.coroutines.channels.Channel<ByteArray>(Channel.UNLIMITED)` and then call `readBuffer.append(chunk)` without backpressure or size guard. This is a remote-pre-auth denial of service whenever an SDK stdio server's stdin is fed by an untrusted or attacker-controlled producer (for example: a host program that exec's the MCP server as a subprocess and pipes through bytes received from a network peer, or a sidecar wrapper that proxies bytes from an HTTP endpoint to the stdio transport). Version 0.13.0 fixes the issue.

CWE CWE-400 CWE-770
Vendor modelcontextprotocol
Product io.modelcontextprotocol:kotlin-sdk
Published Sep 8, 2026
Last Updated Sep 14, 2026
Stay Ahead of the Next One

Get instant alerts for modelcontextprotocol io.modelcontextprotocol:kotlin-sdk

Be the first to know when new medium vulnerabilities affecting modelcontextprotocol io.modelcontextprotocol:kotlin-sdk are published โ€” delivered to Slack, Telegram or Discord.

Get Free Alerts โ†’ Free ยท No credit card ยท 60 sec setup

CVSS v3 Breakdown

CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
Attack Vector
Local
Attack Complexity
Low
Privileges Required
None
User Interaction
None
Scope
Unchanged
Confidentiality
None
Integrity
None
Availability
High

Affected Versions

modelcontextprotocol / io.modelcontextprotocol:kotlin-sdk
< 0.13.0
modelcontextprotocol / io.modelcontextprotocol:kotlin-sdk-client
>= 0.7.0, < 0.13.0
modelcontextprotocol / io.modelcontextprotocol:kotlin-sdk-core
< 0.13.0
modelcontextprotocol / io.modelcontextprotocol:kotlin-sdk-server
>= 0.7.0, < 0.13.0

References

NVD โ†— CVE.org โ†— EPSS Data โ†—
github.com: https://github.com/modelcontextprotocol/kotlin-sdk/security/advisories/GHSA-74gp-qhv5-v493 github.com: https://github.com/modelcontextprotocol/kotlin-sdk/commit/6e6f80512fb8fcc9f3c031cfd693ccbcf9c4aaab github.com: https://github.com/modelcontextprotocol/kotlin-sdk/blob/6d5bac1/kotlin-sdk-core/src/commonMain/kotlin/io/modelcontextprotocol/kotlin/sdk/shared/ReadBuffer.kt github.com: https://github.com/modelcontextprotocol/kotlin-sdk/releases/tag/0.13.0