A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-43194

CVE-2026-43194: Linux Kernel DoS Vulnerability

CVE-2026-43194 is a denial of service flaw in the Linux kernel affecting network transmission error handling in GSO frames. This post covers the technical details, affected versions, impact, and mitigation strategies.

Published: May 7, 2026

CVE-2026-43194 Overview

CVE-2026-43194 is a Linux kernel networking flaw in the TCP transmit path that causes connections to stall when Generic Segmentation Offload (GSO) frames experience partial transmit losses on devices without a queueing discipline (Qdisc). The kernel's tcp_write_xmit() function only inspects the return code from the last segment of a GSO super frame, so the loss of any single segment is incorrectly interpreted as the loss of the entire frame. This causes snd_nxt to lag the actual data sent, and subsequent acknowledgements from the receiver are rejected as TCP_ACK_UNSENT_DATA, freezing the connection.

Critical Impact

TCP connections over Qdisc-less devices such as veth can deadlock after segment drops, producing denial-of-service-like behavior in containerized and virtualized networking stacks.

Affected Products

  • Linux kernel networking subsystem (TCP/GSO transmit path)
  • Configurations using veth interfaces without a Qdisc (containers, network namespaces)
  • Non-IP transports such as CAN and MCTP that bypass the Qdisc layer

Discovery Timeline

  • 2026-05-06 - CVE-2026-43194 published to NVD
  • 2026-05-06 - Last updated in NVD database

Technical Details for CVE-2026-43194

Vulnerability Analysis

The defect lives in the Linux TCP transmit logic where GSO super frames are handed to the device layer. When a driver such as veth drops a segment, it returns an error from ndo_start_xmit(). TCP receives only the return code of the final segment, so it cannot distinguish between "no segments sent" and "some segments sent."

If the last segment of a GSO frame is dropped while earlier segments are transmitted, tcp_write_xmit() treats the entire write as failed and does not advance snd_nxt. The peer, however, receives the successful segments and acknowledges sequence numbers beyond the sender's recorded snd_nxt. The sender then discards the ACK as referencing data it never sent, and retransmissions from the rtx queue fail to converge with the receiver's state. The connection stalls until the application times out or is killed.

Root Cause

The root cause is the ambiguous semantics of the ndo_start_xmit() return code combined with TCP's reliance on that code to update snd_nxt. The Qdisc layer normally hides driver-level errors from the protocol layer, but Qdisc-less paths expose the inconsistency. The protocol receives a single boolean-like return for an entire batch of segments, which is insufficient to represent partial success.

Attack Vector

An unprivileged local actor sharing a network namespace, or a workload able to induce drops on a veth link, can trigger the stall by causing intermittent segment loss during bursty TCP traffic. Container orchestration platforms that rely on veth pairs without Qdisc attachment are the most exposed environments. Remote exploitation requires the ability to induce loss patterns on a Qdisc-less interface, which is generally not reachable from the network. The vulnerability manifests as a reliability and availability issue rather than a memory corruption primitive. See the kernel commit fixing the issue for the patch details.

Detection Methods for CVE-2026-43194

Indicators of Compromise

  • TCP connections that hang indefinitely with non-empty retransmit queues despite the peer acknowledging higher sequence numbers.
  • Increasing TCPACKSkippedSeq or TCP_ACK_UNSENT_DATA counters in /proc/net/netstat on hosts using veth without a Qdisc.
  • Test failures in udpgro_frglist.sh and udpgro_bench.sh from the kernel selftests, including 10-minute timeouts on TCP GRO subtests.

Detection Strategies

  • Inspect packet captures on veth endpoints for ACKs that reference sequence numbers ahead of the sender's last observed transmission.
  • Use ss -ti to identify sockets with stuck snd_nxt and large unacked segments while the peer continues to acknowledge new data.
  • Correlate XDP program attachment on veth interfaces with sudden drops in TCP throughput across container workloads.

Monitoring Recommendations

  • Monitor kernel netstat counters including TCPAbortOnTimeout and out-of-window ACK statistics for unexpected growth.
  • Track per-interface drop counters on veth pairs and correlate with TCP retransmission spikes.
  • Alert on long-lived TCP sessions inside container hosts where RTT or retransmit timers diverge sharply from baseline.

How to Mitigate CVE-2026-43194

Immediate Actions Required

  • Apply the upstream Linux kernel patches referenced in the stable tree commits, including 0c9de092, 4cb163e9, 56bd32c0, 7aa767d0, 9ac6aebe, ae3f627b, c86901d2, and ea5d7787.
  • Rebuild and reboot affected hosts after patch deployment to ensure the corrected tcp_write_xmit() path is loaded.
  • Audit container hosts and virtualization platforms for veth interfaces operating without an attached Qdisc.

Patch Information

The fix masks the return code from ndo_start_xmit() for GSO frames on Qdisc-less paths so that TCP no longer interprets a partial loss as a full loss. The relevant commits are tracked in the upstream stable tree, including 0c9de092, 4cb163e9, 56bd32c0, 7aa767d0, 9ac6aebe, ae3f627b, c86901d2, and ea5d7787.

Workarounds

  • Attach a Qdisc such as fq_codel or pfifo_fast to veth interfaces so that the Qdisc layer absorbs driver errors before they reach TCP.
  • Avoid configurations that disable TSO and force NAPI on veth pairs unless required for testing.
  • Where feasible, route container traffic through bridges or interfaces that retain default Qdisc behavior until kernels are patched.
bash
# Attach a default Qdisc to a veth interface as a temporary workaround
sudo tc qdisc add dev veth0 root fq_codel
# Verify the Qdisc is attached
tc qdisc show dev veth0

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit 0c9de09

  • Kernel Git Commit 4cb163e

  • Kernel Git Commit 56bd32c

  • Kernel Git Commit 7aa767d

  • Kernel Git Commit 9ac6aeb

  • Kernel Git Commit ae3f627

  • Kernel Git Commit c86901d

  • Kernel Git Commit ea5d778
  • Related CVEs
  • CVE-2026-46206: Linux Kernel batman-adv DoS Vulnerability

  • CVE-2026-43492: Linux Kernel MPI Integer Underflow DoS

  • CVE-2026-43491: Linux Kernel QRTR NS DoS Vulnerability

  • CVE-2026-43329: Linux Kernel Netfilter DoS Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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