CVE-2026-27141
Published: 26 February 2026
Summary
CVE-2026-27141 is a high-severity NULL Pointer Dereference (CWE-476) vulnerability in Go (inferred from references). Its CVSS base score is 7.5 (High).
Operationally, exploitation aligns with the MITRE ATT&CK technique Application or System Exploitation (T1499.004); ranked at the 6.8th percentile by exploit likelihood (below the median); it is not currently listed in the CISA KEV catalog.
The strongest mitigations our analysis identified are NIST 800-53 SI-10 (Information Input Validation) and SI-11 (Error Handling).
Deeper analysis
CVE-2026-27141 is a vulnerability in the Go programming language's net/http package, specifically impacting HTTP/2 server implementations. Due to a missing nil check, the receipt of HTTP/2 frames with types 0x0a through 0x0f triggers a server panic. This issue, published on 2026-02-26, is categorized under CWE-476 (NULL Pointer Dereference) and carries a CVSS v3.1 base score of 7.5 (AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H), indicating high availability impact with no confidentiality or integrity effects.
A remote, unauthenticated attacker can exploit this vulnerability by sending the specified HTTP/2 frames to a vulnerable server over the network. Exploitation requires low complexity and no user interaction, resulting in a denial-of-service condition where the server panics and crashes, necessitating a manual restart.
Mitigation details are outlined in Go advisories, including the vulnerability entry GO-2026-4559 at https://pkg.go.dev/vuln/GO-2026-4559. The issue is tracked at https://go.dev/issue/77652, with a patch submitted via code review https://go.dev/cl/746180. Additional information is available from the NVD at https://nvd.nist.gov/vuln/detail/CVE-2026-27141. Affected parties should upgrade to a patched Go release incorporating the fix.
EU & UK References
- 🇪🇺 ENISA EUVD: EUVD-2026-8880
Vulnerability details
Due to missing nil check, sending 0x0a-0x0f HTTP/2 frames will cause a running server to panic
- CWE(s)
Related Threats
MITRE ATT&CK Enterprise TechniquesAI
Why these techniques?
Vulnerability enables remote exploitation of HTTP/2 server implementation (nil dereference in frame handling) to crash the process, directly matching Application or System Exploitation for Endpoint DoS.
CVEs Like This One
Affected Assets
Mitigating Controls
Mitigating Controls (NIST 800-53 r5) AI
Directly remediates the null pointer dereference flaw in Go's HTTP/2 server implementation by applying vendor patches to eliminate the vulnerability.
Requires secure error handling that prevents server panic from missing nil checks when processing invalid HTTP/2 frames.
Mandates validation of HTTP/2 frame types and contents to reject invalid frames (0x0a-0x0f) before they trigger the nil dereference.