CVE-2026-29085: Hono: SSE Control Field Injection via CR/LF in writeSSE()
Summary
When using streamSSE() in Streaming Helper, the event, id, and retry fields were not validated for carriage return (\r) or newline (\n) characters.
Because the SSE protocol uses line breaks as field delimiters, this could allow injection of additional SSE fields within the same event frame if untrusted input was passed into these fields.
Details
The SSE helper builds event frames by joining lines with \n. While multi-line data: fields are handled according to the SSE specification, the event, id, and retry fields previously allowed raw values without rejecting embedded CR/LF characters.
Including CR/LF in these control fields could allow unintended additional fields (such as data:, id:, or retry:) to be injected into the event stream.
The issue has been fixed by rejecting CR/LF characters in these fields.
Impact
An attacker could manipulate the structure of SSE event frames if an application passed user-controlled input directly into event, id, or retry.
Depending on application behavior, this could result in injected SSE fields or altered event stream handling. Applications that render e.data in an unsafe manner (for example, using innerHTML) could potentially expose themselves to client-side script injection.
This issue affects applications that rely on the SSE helper to enforce protocol-level constraints.
Other sources
Hono is a Web application framework that provides support for any JavaScript runtime. Prior to version 4.12.4, when using streamSSE() in Streaming Helper, the event, id, and retry fields were not validated for carriage return (\r) or newline (\n) characters. Because the SSE protocol uses line breaks as field delimiters, this could allow injection of additional SSE fields within the same event frame if untrusted input was passed into these fields. This issue has been patched in version 4.12.4.
— MITRE
Affected Software
Remediation
Event History
Frequently Asked Questions
What is the severity of CVE-2026-29085?
CVE-2026-29085 is considered a medium severity vulnerability due to potential data injection risks.
How do I fix CVE-2026-29085?
To fix CVE-2026-29085, ensure that the event, id, and retry fields in the `streamSSE()` function are validated to prevent carriage return and newline characters.
What are the potential impacts of CVE-2026-29085?
The impact of CVE-2026-29085 includes the possibility of injecting additional SSE fields that could lead to data manipulation or malicious content delivery.
Which versions of Hono are affected by CVE-2026-29085?
CVE-2026-29085 affects versions of the Hono package up to but not including 4.12.4.
Is there a patch available for CVE-2026-29085?
Yes, upgrading to Hono version 4.12.4 or higher will address the vulnerability in CVE-2026-29085.