Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-27141

CVE-2026-27141: HTTP/2 Server DOS Vulnerability

CVE-2026-27141 is a denial of service flaw in HTTP/2 servers caused by missing nil checks when processing specific frames. Attackers can crash servers by sending crafted HTTP/2 frames. This article covers technical details, impact, and mitigation strategies.

Published: February 27, 2026

CVE-2026-27141 Overview

CVE-2026-27141 is a Null Pointer Dereference vulnerability affecting Go HTTP/2 server implementations. Due to a missing nil check in the HTTP/2 frame handling code, an attacker can send specially crafted HTTP/2 frames with type values in the range 0x0a-0x0f to cause a running server to panic and crash. This vulnerability represents a Denial of Service (DoS) condition that can be triggered remotely without authentication.

Critical Impact

Remote attackers can crash Go HTTP/2 servers by sending malformed HTTP/2 frames, causing service disruption without requiring authentication or special privileges.

Affected Products

  • Go HTTP/2 server implementations (golang.org/x/net/http2)
  • Applications using affected versions of the Go net/http package with HTTP/2 support

Discovery Timeline

  • 2026-02-26 - CVE CVE-2026-27141 published to NVD
  • 2026-02-26 - Last updated in NVD database

Technical Details for CVE-2026-27141

Vulnerability Analysis

This vulnerability stems from improper input validation in Go's HTTP/2 frame processing logic. HTTP/2 defines several frame types (identified by single-byte type codes), including standard types like DATA (0x00), HEADERS (0x01), and SETTINGS (0x04). Frame types in the range 0x0a-0x0f are either reserved or implementation-specific. The vulnerable code path fails to perform a nil check before dereferencing a pointer when processing these particular frame types.

When the HTTP/2 server receives a frame with type values 0x0a through 0x0f, the missing nil validation causes the Go runtime to panic, immediately terminating the server process. This creates a straightforward denial of service vector that requires only network access to the target server.

Root Cause

The root cause is a missing nil pointer check in the HTTP/2 frame handler. When processing frames with type codes 0x0a-0x0f, the code assumes a certain data structure is properly initialized. However, for these specific frame types, the initialization may not occur, resulting in a nil pointer that is subsequently dereferenced, triggering a Go runtime panic.

The fix, as documented in the Go.dev Change Log Entry, adds the necessary nil check before accessing the pointer, preventing the panic condition.

Attack Vector

An attacker can exploit this vulnerability remotely over the network by establishing an HTTP/2 connection to the vulnerable server and sending a crafted frame. The attack does not require authentication, user interaction, or any special privileges.

The attack sequence involves:

  1. Establishing a valid HTTP/2 connection to the target server
  2. Constructing an HTTP/2 frame with the type byte set to any value between 0x0a and 0x0f
  3. Sending the malformed frame to the server
  4. The server processes the frame, hits the nil pointer dereference, and panics

Since HTTP/2 uses binary framing, this attack requires crafting raw HTTP/2 frames rather than using standard HTTP client libraries. Repeated exploitation can prevent the service from recovering, especially in environments without automatic restart mechanisms.

Detection Methods for CVE-2026-27141

Indicators of Compromise

  • Unexpected Go server crashes with panic stack traces referencing HTTP/2 frame handling code
  • Log entries indicating runtime panic with nil pointer dereference in net/http2 or golang.org/x/net/http2 packages
  • Sudden service terminations following HTTP/2 connection establishment from external sources

Detection Strategies

  • Monitor Go application logs for panic stack traces containing references to HTTP/2 frame processing functions
  • Implement network-level monitoring to detect unusual HTTP/2 frame patterns, particularly frames with type values 0x0a-0x0f
  • Deploy application-level health checks to detect and alert on unexpected server restarts

Monitoring Recommendations

  • Configure process monitoring to track unexpected terminations of Go HTTP/2 services
  • Enable verbose logging for HTTP/2 frame processing if available in your Go application
  • Implement automated alerting for repeated server crashes within short time windows

How to Mitigate CVE-2026-27141

Immediate Actions Required

  • Update Go and the golang.org/x/net package to the patched version containing the fix from Go.dev Change Log Entry
  • Review the Go.dev Vulnerability Advisory for specific version guidance
  • Implement process supervision to automatically restart crashed services while patching is underway

Patch Information

The vulnerability has been addressed in the Go project. Refer to the following resources for patch details:

  • Go.dev Change Log Entry - Contains the code fix adding the missing nil check
  • Go.dev Issue Report - Original issue report and discussion
  • Go.dev Vulnerability Advisory - Official vulnerability advisory with affected versions

Organizations should update their Go toolchain and rebuild affected applications, or update the golang.org/x/net dependency directly if using Go modules.

Workarounds

  • Deploy a reverse proxy or load balancer in front of vulnerable Go HTTP/2 servers that can filter or sanitize HTTP/2 frames
  • Temporarily disable HTTP/2 support and fall back to HTTP/1.1 if acceptable for your environment
  • Implement process supervision (systemd, supervisord, Kubernetes restart policies) to automatically restart crashed services
  • Consider rate limiting new HTTP/2 connections to reduce the impact of repeated exploitation attempts

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechN/A

  • SeverityNONE

  • CVSS ScoreN/A

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Go.dev Change Log Entry

  • Go.dev Issue Report

  • NVD CVE-2026-27141 Detail

  • Go.dev Vulnerability Advisory
  • Latest CVEs
  • CVE-2026-25874: LeRobot RCE Vulnerability

  • CVE-2026-41272: Flowise LLM Builder SSRF Vulnerability

  • CVE-2026-41268: Flowise RCE Vulnerability

  • CVE-2026-41265: Flowise Airtable Agent RCE Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English