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-23254

CVE-2026-23254: Linux Kernel GRO DoS Vulnerability

CVE-2026-23254 is a denial of service vulnerability in the Linux kernel's GRO implementation that causes checksum validation errors. This article covers the technical details, affected versions, and mitigation strategies.

Updated: May 16, 2026

CVE-2026-23254 Overview

CVE-2026-23254 is a Linux kernel vulnerability in the Generic Receive Offload (GRO) subsystem. The flaw resides in the UDP GRO completion path, where udp4_gro_complete() incorrectly assumes that all packets reaching the receive path have the encapsulation flag cleared. When hardware NICs offload checksums for UDP-encapsulated traffic, when the tun driver injects GSO packets with UDP encapsulation, or when a veth based setup produces the problematic layout, this assumption fails. The kernel then computes the outer UDP pseudo checksum using the inner network offset, triggering checksum validation errors during packet processing.

Critical Impact

Incorrect outer network offset handling in UDP GRO causes pseudo-checksum validation failures that disrupt UDP-encapsulated network traffic processing in the Linux kernel.

Affected Products

  • Linux kernel networking stack — net/ipv4/udp_offload.c GRO completion path
  • Systems using hardware NICs that offload checksum for UDP-encapsulated traffic
  • Environments using tun driver GSO injection or veth based encapsulation setups

Discovery Timeline

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

Technical Details for CVE-2026-23254

Vulnerability Analysis

The defect lies in the Linux kernel's UDP Generic Receive Offload (GRO) completion logic. GRO aggregates incoming packets to reduce per-packet processing overhead. When the aggregated UDP packet enters the completion stage, udp4_gro_complete() recomputes the outer UDP header pseudo checksum. This computation depends on selecting the correct network header offset for the outer header.

The completion code assumed the encapsulation skb flag was always cleared on packets arriving at the receive path. That assumption does not hold across all packet sources. Several hardware NICs preserve or set the flag when offloading checksums for UDP-encapsulated traffic. The tun driver can also inject GSO packets carrying UDP encapsulation, and a veth based topology can produce the same skb layout.

When the flag remains set, udp4_gro_complete() selects the inner network offset rather than the outer offset. The pseudo checksum is then computed over the wrong headers, producing invalid checksum results and causing the packet to be dropped or mishandled later in the stack.

Root Cause

The root cause is an unsafe invariant assumption in the GRO completion path. The code did not normalize the encapsulation flag before computing the outer pseudo checksum. This is a state-handling defect [CWE-665 class] rather than a memory safety issue.

Attack Vector

The issue is primarily a correctness and reliability defect affecting UDP-encapsulated traffic such as VXLAN, GENEVE, and similar tunneling protocols. Crafted packet flows traversing affected NICs or virtual interfaces can produce checksum validation errors, disrupting tunneled connectivity. No remote code execution path is described in the upstream commit.

The fix clears the encapsulation flag at GRO completion time. The flag is then set again as needed for encapsulated packets by udp_gro_complete(). See the upstream fix at Kernel Git Commit 2e5edb6 and related stable backports.

Detection Methods for CVE-2026-23254

Indicators of Compromise

  • Elevated UDP checksum error counters in /proc/net/snmp (InCsumErrors) on hosts handling encapsulated traffic
  • Unexpected packet drops in VXLAN, GENEVE, or other UDP-tunneled overlays terminating on affected kernels
  • Connectivity failures on veth pairs or tun interfaces carrying UDP-encapsulated GSO traffic

Detection Strategies

  • Inventory Linux kernel versions across hosts and identify systems running pre-patch versions referenced in the stable commits
  • Correlate NIC vendor and driver behavior — specifically NICs that offload checksum for UDP encapsulation — with kernel version data
  • Monitor for tunneling protocol degradation metrics alongside kernel logs reporting checksum mismatches

Monitoring Recommendations

  • Track nstat and ethtool -S counters for checksum errors on interfaces handling overlay traffic
  • Capture packet traces on suspected interfaces and inspect outer UDP pseudo checksums for tunneled flows
  • Alert on sustained increases in UDP InCsumErrors relative to baseline traffic volume

How to Mitigate CVE-2026-23254

Immediate Actions Required

  • Identify all Linux hosts processing UDP-encapsulated traffic such as VXLAN, GENEVE, or GRE-over-UDP overlays
  • Apply the upstream stable kernel updates containing the GRO outer network offset fix
  • Validate connectivity and checksum counters on overlay networks after patching

Patch Information

The fix always clears the encapsulation flag at GRO completion, allowing udp_gro_complete() to set it again only when required for encapsulated packets. Apply the patches from the following upstream commits: Kernel Git Commit 2e5edb6, Kernel Git Commit 5c2c3c3, Kernel Git Commit 9d40a85, and Kernel Git Commit b83557b.

Workarounds

  • Disable UDP GRO on affected interfaces using ethtool -K <iface> rx-gro-list off where applicable, accepting the throughput trade-off
  • Disable hardware checksum offload for UDP-encapsulated traffic on NICs known to set the encapsulation flag
  • Where feasible, route encapsulated traffic away from hosts running unpatched kernels until updates are deployed
bash
# Example: disable GRO on an interface as a temporary workaround
ethtool -K eth0 gro off

# Verify current offload settings
ethtool -k eth0 | grep -E "generic-receive-offload|tx-checksum|rx-checksum"

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

  • EPSS Probability0.03%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit 2e5edb6

  • Kernel Git Commit 5c2c3c3

  • Kernel Git Commit 9d40a85

  • Kernel Git Commit b83557b
  • 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