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

CVE-2026-23453: Linux Kernel ICSSG-PRUETH DoS Vulnerability

CVE-2026-23453 is a denial of service flaw in Linux kernel ICSSG-PRUETH driver that causes memory leaks in XDP_DROP operations. This post explains its technical details, affected versions, impact, and mitigation steps.

Published: April 10, 2026

CVE-2026-23453 Overview

A memory leak vulnerability has been identified in the Linux kernel's TI ICSSG-PRUETH network driver. The issue occurs in the XDP (eXpress Data Path) packet processing code, specifically in the emac_run_xdp() function when handling XDP_DROP actions in non-zero-copy mode. When page recycling was removed from the XDP_DROP path to avoid conflicts with AF_XDP zero-copy mode, it inadvertently caused memory pages to never be returned to the page pool in standard page pool mode, leading to potential out-of-memory (OOM) conditions.

Critical Impact

Systems running XDP programs that drop packets in non-zero-copy mode may experience memory exhaustion and OOM conditions, potentially causing system instability or denial of service.

Affected Products

  • Linux kernel with TI ICSSG-PRUETH network driver
  • Systems using XDP programs in non-zero-copy mode
  • Texas Instruments AM64x and AM65x industrial SoCs with ICSSG PRU subsystem

Discovery Timeline

  • 2026-04-03 - CVE CVE-2026-23453 published to NVD
  • 2026-04-07 - Last updated in NVD database

Technical Details for CVE-2026-23453

Vulnerability Analysis

This vulnerability is classified as a Memory Leak affecting the Linux kernel's network subsystem. The TI ICSSG-PRUETH driver implements XDP (eXpress Data Path) functionality for high-performance packet processing on Texas Instruments industrial Ethernet subsystems.

The root issue stems from a code change that removed page recycling logic from the XDP_DROP handling path in emac_run_xdp(). This modification was originally made to prevent conflicts with AF_XDP zero-copy mode, which uses a different memory management approach via xsk_buff_free(). However, the change had unintended consequences for the non-zero-copy code path.

In standard page pool mode, when an XDP program issues an XDP_DROP verdict, the associated memory page should be returned to the page pool for reuse. Without proper recycling, each dropped packet causes a permanent memory allocation that is never freed, resulting in gradual memory exhaustion proportional to network traffic volume and drop rate.

Root Cause

The vulnerability originates from incomplete handling of the ICSSG_XDP_CONSUMED return value in the packet receive path. When emac_run_xdp() returns this value for XDP_DROP verdicts, the caller emac_rx_packet() did not properly recycle the page back to the page pool. The zero-copy path in emac_rx_packet_zc() correctly handled cleanup using xsk_buff_free(), but the standard path lacked equivalent cleanup logic.

Attack Vector

This vulnerability is triggered locally through network traffic processing. An attacker with the ability to send network traffic to an affected system running an XDP program that drops packets could accelerate memory exhaustion. The attack does not require authentication but does require:

  1. The target system running a Linux kernel with the vulnerable ICSSG-PRUETH driver
  2. An active XDP program configured to drop packets (XDP_DROP action)
  3. The system operating in non-zero-copy (standard page pool) mode
  4. Sufficient network traffic volume to trigger meaningful memory consumption

The impact is primarily denial of service through resource exhaustion rather than code execution or privilege escalation.

Detection Methods for CVE-2026-23453

Indicators of Compromise

  • Gradual increase in memory usage on systems with ICSSG-PRUETH interfaces under XDP_DROP workloads
  • System logs showing OOM killer activity or memory pressure warnings
  • Decreasing page pool free page counts over time without corresponding system memory release
  • Kernel warnings related to page allocation failures in network stack

Detection Strategies

  • Monitor system memory usage trends, particularly looking for steady increases correlated with network traffic
  • Check for ICSSG-PRUETH driver presence with lsmod | grep icssg_prueth and active XDP programs
  • Use bpftool prog list to identify attached XDP programs and their drop statistics
  • Review /proc/meminfo for unexpected memory consumption patterns in the slab allocator

Monitoring Recommendations

  • Implement memory utilization alerting for systems running XDP workloads on TI ICSSG hardware
  • Configure page pool statistics monitoring via kernel tracepoints where available
  • Enable kernel memory debugging options during testing to identify leak patterns
  • Set up automated health checks for network processing systems to detect early signs of memory pressure

How to Mitigate CVE-2026-23453

Immediate Actions Required

  • Apply the kernel patches from the upstream commits to affected systems
  • If patching is not immediately possible, consider temporarily disabling XDP programs on ICSSG-PRUETH interfaces
  • Monitor memory usage closely on systems that cannot be immediately patched
  • Plan system restarts for affected hosts to clear accumulated memory leaks before OOM conditions occur

Patch Information

The Linux kernel maintainers have released fixes for this vulnerability through the stable kernel tree. The patches modify emac_rx_packet() to properly recycle pages to the page pool when emac_run_xdp() returns ICSSG_XDP_CONSUMED for XDP_DROP actions.

Relevant kernel commits:

  • Linux Kernel Commit 719d3e71691d
  • Linux Kernel Commit d16d57dedcb6

Organizations should update to a kernel version containing these patches through their distribution's standard update mechanisms.

Workarounds

  • Disable XDP programs on affected ICSSG-PRUETH interfaces until patches can be applied
  • Switch to AF_XDP zero-copy mode if supported, as this code path handles cleanup correctly
  • Implement periodic system restarts as a temporary measure to clear accumulated memory leaks
  • Reduce network traffic exposure to systems running vulnerable configurations where possible
bash
# Check for ICSSG-PRUETH driver and XDP programs
lsmod | grep icssg_prueth
bpftool prog list | grep -i xdp

# Detach XDP program from interface as workaround
ip link set dev eth0 xdp off

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
  • Linux Kernel Commit Log

  • Linux Kernel Commit Log
  • 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