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

CVE-2026-23377: Linux Kernel Ice Driver DoS Vulnerability

CVE-2026-23377 is a denial of service flaw in the Linux kernel ice driver that can trigger kernel panic through XDP buffer mismanagement. This post explains its impact, affected versions, and mitigation steps.

Published: March 27, 2026

CVE-2026-23377 Overview

A memory corruption vulnerability has been identified in the Linux kernel's ice network driver affecting XDP (eXpress Data Path) receive queue handling. The vulnerability stems from incorrect assumptions about the frag_size field in XDP RxQ info, where the driver uses DMA write length instead of the expected xdp.frame_sz buffer size. This misconfiguration leads to negative tailroom calculations, which can be exploited to trigger a kernel panic.

The flaw affects the bpf_xdp_frags_increase_tail() function, which expects the whole buffer size rather than the DMA write size. When exploited using specific packet sizes and offset values through the XDP_ADJUST_TAIL_GROW_MULTI_BUFF xskxceiver test, attackers can cause system instability or complete denial of service.

Critical Impact

This vulnerability enables kernel panic conditions through crafted XDP operations, potentially causing complete system denial of service on affected Linux systems running the ice network driver.

Affected Products

  • Linux kernel with ice network driver (Intel Ethernet Controller E810 series)
  • Systems utilizing XDP with ice driver in both ZC (Zero Copy) and non-ZC modes
  • Linux kernel versions prior to the security patches

Discovery Timeline

  • 2026-03-25 - CVE CVE-2026-23377 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-23377

Vulnerability Analysis

The vulnerability exists in the ice driver's XDP RxQ configuration where the frag_size field is populated with an incorrect value. The bpf_xdp_frags_increase_tail() function relies on the frag_size field to determine available buffer space for tail growth operations. By providing the DMA write length instead of the actual buffer size (xdp.frame_sz), the driver creates a situation where calculated tailroom becomes negative.

This architectural flaw can be triggered through the XDP_ADJUST_TAIL_GROW_MULTI_BUFF xskxceiver test by manipulating packet size to 6912 bytes and setting the requested offset to extremely large values such as XSK_UMEM__MAX_FRAME_SIZE * 100. The resulting negative tailroom causes memory corruption and ultimately leads to kernel panic in non-ZC mode. While ZC mode does not exhibit the panic behavior, tailroom growing operations fail unexpectedly.

Root Cause

The root cause is a semantic mismatch between the ice driver's XDP RxQ configuration and the expectations of the BPF subsystem. The driver incorrectly provides DMA write size to the frag_size field when the bpf_xdp_frags_increase_tail() function expects the complete buffer truesize. This leads to arithmetic underflow when calculating available tailroom for packet expansion operations.

Attack Vector

The attack vector requires local access to a system running the ice driver with XDP enabled. An attacker with the ability to configure XDP programs can manipulate packet handling parameters to trigger the vulnerable code path. Specifically, sending packets of size 6912 bytes while requesting extremely large offset adjustments through XDP operations causes the kernel to calculate a negative tailroom value, resulting in memory corruption and potential kernel panic.

The vulnerability is exploitable through legitimate XDP testing interfaces when combined with specific packet size and offset configurations.

Detection Methods for CVE-2026-23377

Indicators of Compromise

  • Unexpected kernel panics on systems using Intel E810 network interfaces with XDP enabled
  • System crashes during XDP packet processing with large offset values
  • Kernel log messages indicating memory corruption or invalid tailroom calculations in ice driver
  • BPF subsystem errors related to bpf_xdp_frags_increase_tail() operations

Detection Strategies

  • Monitor kernel logs for ice driver errors related to XDP RxQ configuration or tailroom calculations
  • Implement audit logging for XDP program attachment and configuration changes on ice interfaces
  • Track system stability metrics on hosts utilizing ice driver with XDP workloads
  • Deploy kernel crash analysis tools to identify patterns consistent with this vulnerability

Monitoring Recommendations

  • Enable enhanced kernel logging for the ice driver module and BPF subsystem
  • Configure crash dump collection to capture diagnostic information during kernel panics
  • Monitor for unusual XDP program behavior including large offset adjustment requests
  • Implement network traffic analysis for anomalous packet sizes targeting ice driver interfaces

How to Mitigate CVE-2026-23377

Immediate Actions Required

  • Apply the kernel patches that correct the frag_size field to use fill queue buffer truesize
  • Temporarily disable XDP functionality on ice driver interfaces if patching is not immediately possible
  • Restrict access to XDP program attachment capabilities to trusted administrators only
  • Monitor systems for signs of exploitation attempts during the patching window

Patch Information

The Linux kernel developers have released security patches that address this vulnerability by using fill queue buffer truesize instead of DMA write size in XDP RxQ info. The fix also addresses ZC mode by utilizing a new helper function to ensure consistent behavior across both modes.

Patch commits are available from the kernel stable tree:

  • Kernel Git Commit b0f05100e8795aadd1c0606bae9caefbda070d63
  • Kernel Git Commit e142dc4ef0f451b7ef99d09aaa84e9389af629d7

Organizations should update to the latest kernel version containing these fixes.

Workarounds

  • Disable XDP on ice driver interfaces until patches can be applied using ip link set dev <interface> xdp off
  • Restrict BPF capabilities using kernel parameters or security modules to prevent untrusted XDP program loading
  • Implement network segmentation to limit exposure of vulnerable systems to potential attackers
  • Consider alternative network drivers if XDP functionality is not critical to operations
bash
# Disable XDP on ice driver interface
ip link set dev eth0 xdp off

# Verify XDP is disabled
ip link show eth0 | grep xdp

# Restrict BPF capabilities (requires reboot)
echo "kernel.unprivileged_bpf_disabled=1" >> /etc/sysctl.conf
sysctl -p

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.02%

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

  • Kernel Git Commit Details
  • Related CVEs
  • CVE-2026-23446: Linux Kernel aqc111 Driver DoS Vulnerability

  • CVE-2026-23451: Linux Kernel Bonding Driver DoS Flaw

  • CVE-2026-23460: Linux Kernel ROSE Protocol DoS Vulnerability

  • CVE-2026-23459: Linux Kernel DOS 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