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
    • 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-21438

CVE-2026-21438: webtransport-go DOS Vulnerability

CVE-2026-21438 is a denial of service vulnerability in webtransport-go caused by unbounded memory consumption. Attackers can exploit this by creating and closing WebTransport streams. This article covers technical details, affected versions, impact, and mitigation.

Published: February 13, 2026

CVE-2026-21438 Overview

CVE-2026-21438 is a memory leak vulnerability in webtransport-go, an implementation of the WebTransport protocol. Prior to version 0.10.0, an attacker can cause unbounded memory consumption by repeatedly creating and closing many WebTransport streams. Closed streams were not removed from an internal session map, preventing garbage collection of their resources. This vulnerability is classified as CWE-401 (Missing Release of Memory after Effective Lifetime).

Critical Impact

Remote attackers can exhaust server memory resources through repeated WebTransport stream creation and closure, potentially causing denial of service conditions without requiring authentication.

Affected Products

  • webtransport-go versions prior to 0.10.0

Discovery Timeline

  • 2026-02-12 - CVE-2026-21438 published to NVD
  • 2026-02-12 - Last updated in NVD database

Technical Details for CVE-2026-21438

Vulnerability Analysis

This vulnerability stems from improper memory management in the webtransport-go library. When WebTransport streams are created and subsequently closed, the library fails to properly clean up internal data structures. Specifically, closed streams remain in an internal session map indefinitely, which prevents the Go runtime's garbage collector from reclaiming the memory associated with these streams.

The vulnerability requires no authentication and can be exploited remotely over the network. An attacker can continuously open and close WebTransport streams, causing the server's memory footprint to grow unboundedly until system resources are exhausted.

Root Cause

The root cause is CWE-401: Missing Release of Memory after Effective Lifetime. The webtransport-go implementation maintains a session map to track active WebTransport streams. When streams are closed, the corresponding entries in this map are not removed, leading to a memory leak. Without proper cleanup, references to closed stream objects persist, preventing garbage collection and causing memory to accumulate over time.

Attack Vector

The attack can be executed remotely over the network without requiring any privileges or user interaction. An attacker would:

  1. Establish a connection to a server running the vulnerable webtransport-go library
  2. Open multiple WebTransport streams in rapid succession
  3. Close these streams without allowing the server to properly clean up
  4. Repeat this process to continuously accumulate memory allocations
  5. Continue until server memory is exhausted, causing denial of service

The vulnerability is particularly concerning for high-traffic services using WebTransport, as legitimate usage patterns could inadvertently trigger the memory leak, while malicious actors could deliberately exploit it for DoS attacks.

Detection Methods for CVE-2026-21438

Indicators of Compromise

  • Steadily increasing memory consumption on servers running webtransport-go without corresponding increase in active connections
  • Large number of WebTransport stream open/close events from single sources in a short time period
  • Server process memory usage growing beyond expected thresholds over time
  • Unusual patterns of rapid stream creation and termination in WebTransport logs

Detection Strategies

  • Monitor server memory utilization metrics for gradual, unbounded growth patterns
  • Implement connection rate limiting and stream creation throttling at the application layer
  • Configure alerting on memory consumption thresholds for processes using webtransport-go
  • Review application logs for patterns of excessive stream creation and closure from individual clients

Monitoring Recommendations

  • Set up continuous memory monitoring for all services using webtransport-go prior to v0.10.0
  • Implement logging for WebTransport stream lifecycle events (creation, closure, errors)
  • Configure alerts when memory usage exceeds baseline thresholds by a significant margin
  • Monitor for denial of service symptoms such as service degradation or out-of-memory errors

How to Mitigate CVE-2026-21438

Immediate Actions Required

  • Upgrade webtransport-go to version 0.10.0 or later immediately
  • Audit all applications and services to identify those using the vulnerable webtransport-go library
  • Implement connection rate limiting to reduce the potential impact of exploitation attempts
  • Consider temporarily disabling WebTransport functionality if upgrade is not immediately possible

Patch Information

The vulnerability is fixed in webtransport-go version 0.10.0. The fix ensures that closed streams are properly removed from the internal session map, allowing the garbage collector to reclaim memory resources. Users should upgrade to this version or later to remediate the vulnerability.

For detailed information about the fix, refer to:

  • GitHub Release v0.10.0
  • GitHub Security Advisory GHSA-2f2x-8mwp-p2gc

Workarounds

  • Implement aggressive connection and stream rate limiting at the application or network layer
  • Deploy memory usage monitoring with automatic service restarts when thresholds are exceeded
  • Consider using a reverse proxy or load balancer to limit the rate of WebTransport connections
  • Schedule periodic service restarts during maintenance windows to clear accumulated memory until upgrade is complete
bash
# Example: Update webtransport-go dependency in Go module
go get github.com/quic-go/webtransport-go@v0.10.0
go mod tidy

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechWebtransport Go

  • SeverityMEDIUM

  • CVSS Score5.3

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-401
  • Technical References
  • GitHub Release v0.10.0

  • GitHub Security Advisory GHSA-2f2x-8mwp-p2gc
  • Latest CVEs
  • CVE-2025-70797: LimeSurvey XSS Vulnerability

  • CVE-2025-30650: Juniper Junos OS Auth Bypass Vulnerability

  • CVE-2026-35471: Goshs Path Traversal Vulnerability

  • CVE-2026-35393: Goshs Path Traversal 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