The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
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
    • 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-27135

CVE-2026-27135: nghttp2 Library DoS Vulnerability

CVE-2026-27135 is a denial of service vulnerability in the nghttp2 HTTP/2 library that causes assertion failure through malformed frames. This article covers the technical details, affected versions, and mitigation.

Published: March 20, 2026

CVE-2026-27135 Overview

CVE-2026-27135 is a denial of service vulnerability in nghttp2, an implementation of the HTTP/2 protocol in C. The vulnerability exists due to missing internal state validation in the nghttp2 library. When the application calls nghttp2_session_terminate_session or nghttp2_session_terminate_session2 APIs to terminate a session, the library fails to properly stop processing incoming data. This allows an attacker to send a malformed frame that triggers a FRAME_SIZE_ERROR, resulting in an assertion failure and application crash.

Critical Impact

Remote attackers can crash applications using vulnerable versions of nghttp2 by sending malformed HTTP/2 frames after session termination is initiated, causing denial of service.

Affected Products

  • nghttp2 versions prior to 1.68.1
  • Applications and services using vulnerable nghttp2 library builds
  • HTTP/2 enabled web servers and proxies utilizing nghttp2

Discovery Timeline

  • 2026-03-18 - CVE CVE-2026-27135 published to NVD
  • 2026-03-19 - Last updated in NVD database

Technical Details for CVE-2026-27135

Vulnerability Analysis

This vulnerability is classified as CWE-617 (Reachable Assertion), a denial of service condition that occurs when an assertion in the code can be triggered by an external input. The flaw resides in the session handling logic within the nghttp2 library.

The core issue stems from the library's behavior when session termination APIs are invoked. When nghttp2_session_terminate_session or nghttp2_session_terminate_session2 is called—either by the application directly or internally when a connection error is detected—the library should cease processing incoming data. However, due to missing state validation, the library continues to read and process incoming frames even after termination is requested.

This creates a dangerous window where the library is in an inconsistent state. When a malformed frame with an incorrect size is received during this window, it triggers a FRAME_SIZE_ERROR check that leads to an assertion failure, immediately crashing the application.

Root Cause

The root cause is missing validation of iframe->state when processing frames after session termination. The library fails to check whether the session is in the NGHTTP2_IB_IGN_ALL state (ignore all incoming data) before continuing to process frame data. Without this check, the library attempts to process frames even when it should be ignoring all incoming traffic, leading to the assertion failure when encountering malformed data.

Attack Vector

An attacker can exploit this vulnerability over the network by establishing an HTTP/2 connection to a vulnerable application and triggering conditions that cause session termination. The attack sequence involves:

  1. Establishing a valid HTTP/2 connection to the target
  2. Sending requests or frames that trigger session termination (either through application logic or by causing a connection error)
  3. Immediately following with a malformed frame that has an incorrect frame size
  4. The assertion failure crashes the application, causing denial of service

The security patch adds the missing state validation to properly handle this scenario:

c
          return rv;
        }

+        if (iframe->state == NGHTTP2_IB_IGN_ALL) {
+          return (nghttp2_ssize)inlen;
+        }
+
        on_begin_frame_called = 1;

        rv = session_process_headers_frame(session);

Source: GitHub Commit Details

Detection Methods for CVE-2026-27135

Indicators of Compromise

  • Application crashes with assertion failure messages in nghttp2 library code
  • Abnormal HTTP/2 connection termination patterns followed by additional frame traffic
  • Core dump files or crash reports referencing nghttp2_session functions
  • Increased rate of FRAME_SIZE_ERROR occurrences in HTTP/2 logs

Detection Strategies

  • Monitor application process stability for unexpected crashes in HTTP/2 handling components
  • Implement network traffic analysis to detect anomalous HTTP/2 frame sequences following connection errors
  • Deploy intrusion detection rules to identify malformed HTTP/2 frames targeting FRAME_SIZE_ERROR conditions
  • Review application logs for repeated assertion failures in nghttp2-related code paths

Monitoring Recommendations

  • Enable core dump collection and analysis for applications using nghttp2
  • Set up process monitoring to alert on unexpected HTTP/2 service restarts
  • Configure HTTP/2 connection logging to capture frame-level details for forensic analysis
  • Implement rate limiting on HTTP/2 connections to mitigate DoS impact

How to Mitigate CVE-2026-27135

Immediate Actions Required

  • Upgrade nghttp2 to version 1.68.1 or later immediately
  • Audit all applications and services using nghttp2 library dependencies
  • Review and update container images, packages, and deployments that bundle nghttp2
  • Implement network-level rate limiting for HTTP/2 connections as a temporary measure

Patch Information

The vulnerability has been addressed in nghttp2 version 1.68.1. The fix adds the missing state validation check to ensure the library properly ignores incoming data when in the NGHTTP2_IB_IGN_ALL state. Organizations should update to this version or later as soon as possible. The security patch details are available in the GitHub Commit Details and the GitHub Security Advisory GHSA-6933.

Workarounds

  • No known workarounds are available according to the security advisory
  • Upgrading to nghttp2 version 1.68.1 or later is the only effective remediation
  • Consider temporarily disabling HTTP/2 support if upgrade is not immediately possible
  • Implement additional layers of protection such as web application firewalls with HTTP/2 inspection capabilities
bash
# Verify nghttp2 version and upgrade
nghttp --version
# On Debian/Ubuntu systems
apt-get update && apt-get install --only-upgrade libnghttp2-14
# On RHEL/CentOS systems  
yum update libnghttp2
# Verify updated version
nghttp --version

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechNghttp2

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-617
  • Technical References
  • GitHub Commit Details

  • GitHub Security Advisory GHSA-6933
  • Related CVEs
  • CVE-2024-28182: Nghttp2 HTTP/2 DoS Vulnerability

  • CVE-2020-11080: Nghttp2 HTTP/2 SETTINGS Frame DoS Flaw

  • CVE-2026-24029: DNS over HTTPS Auth Bypass 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