Triage of Node.js May 2026 release fixing CRLF header injection and SSRF protections in the built-in global fetch / undici client.
undici (the backend of globalThis.fetch). Carriage return characters in custom header values were not stripped, enabling HTTP request splitting and SSRF proxy bypass.
| CVE 식별자 | 서브시스템 / 구성 요소 | 영향 | CVSS | 실제 악용 여부? |
|---|---|---|---|---|
| CVE-2024-30260 | undici / global fetch() | CRLF Header Injection & SSRF | 7.5 High | YES (In-The-Wild) |
| CVE-2024-30261 | zlib Decompression | Zip Bomb ReDoS | 6.2 Medium | No |
| CVE-2024-30262 | vm Module | Context Isolation Leak | 5.8 Medium | No |
See the JavaScript validation patch in lib/core/request.js disallowing control characters in outgoing HTTP headers.