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

CVE-2026-22993: Linux Kernel Use-After-Free Vulnerability

CVE-2026-22993 is a use-after-free flaw in the Linux kernel's idpf driver that causes NULL pointer dereference after soft reset. This post covers the technical details, affected versions, impact, and mitigation.

Published: January 30, 2026

CVE-2026-22993 Overview

A NULL pointer dereference vulnerability has been identified in the Linux kernel's idpf (Intel Data Plane Function) driver. The vulnerability occurs during soft reset operations when the RSS (Receive Side Scaling) LUT (Lookup Table) is freed but not properly restored unless the network interface is in an up state. If an ethtool command that accesses the RSS LUT is executed immediately after a soft reset, the system will experience a kernel NULL pointer dereference, potentially leading to system instability or denial of service.

Critical Impact

Local attackers can trigger a kernel panic through NULL pointer dereference by executing ethtool commands after a soft reset, causing denial of service on affected Linux systems.

Affected Products

  • Linux kernel with idpf driver (Intel Data Plane Function)
  • Systems using Intel Ethernet network adapters with idpf driver support

Discovery Timeline

  • 2026-01-23 - CVE CVE-2026-22993 published to NVD
  • 2026-01-26 - Last updated in NVD database

Technical Details for CVE-2026-22993

Vulnerability Analysis

This vulnerability represents a classic NULL pointer dereference issue in the Linux kernel's memory management for the idpf network driver. During a soft reset operation, the driver frees the RSS LUT memory structure but fails to properly reinitialize it under certain conditions. Specifically, if the network interface is down during the reset process, the RSS LUT pointer remains NULL.

The vulnerability is triggered when a user issues an ethtool command (such as ethtool -x eth1) that attempts to read the RSS LUT configuration. The idpf_get_rxfh() function, responsible for retrieving RSS hash function settings, dereferences this NULL pointer at offset 0x108, causing a kernel oops with a supervisor read access violation in kernel mode.

The call trace shows the execution path from user space through __x64_sys_sendto → netlink_unicast → genl_rcv → ethnl_default_doit → rss_prepare_data → idpf_get_rxfh, where the final function attempts to access the uninitialized RSS LUT structure.

Root Cause

The root cause lies in the incomplete state restoration logic during soft reset operations in the idpf driver. When a soft reset is triggered (for example, by changing queue counts via ethtool -L), the driver correctly frees the RSS LUT memory to prepare for reconfiguration. However, the restoration logic only repopulates the RSS LUT if the interface is administratively up at the time of reset.

This creates a race condition where:

  1. The interface is brought down (ifconfig eth1 down)
  2. Queue count is changed (ethtool -L eth1 combined 20), triggering soft reset
  3. RSS LUT is freed but not restored because interface is down
  4. User queries RSS configuration (ethtool -x eth1)
  5. Driver attempts to dereference NULL pointer

Additionally, the original code unnecessarily reset the RSS LUT even when the soft reset did not involve queue count changes, introducing unnecessary state transitions.

Attack Vector

The attack requires local access to the system with privileges to execute network configuration commands. An attacker with appropriate permissions can reproduce this vulnerability using the following sequence:

  1. Bring the target network interface down using ifconfig or ip link set down
  2. Modify the queue count using ethtool to trigger a soft reset
  3. Immediately query the RSS LUT configuration while the interface remains down

This sequence reliably triggers the NULL pointer dereference, causing a kernel panic or system crash. The vulnerability is locally exploitable and can be used for denial of service attacks against systems running affected Linux kernel versions with idpf driver loaded.

Detection Methods for CVE-2026-22993

Indicators of Compromise

  • Kernel oops or panic messages in system logs containing idpf_get_rxfh in the call trace
  • BUG messages indicating NULL pointer dereference at address 0000000000000000
  • System crashes following ethtool RSS configuration queries after network interface resets
  • Kernel log entries showing #PF: supervisor read access in kernel mode associated with idpf module

Detection Strategies

  • Monitor kernel logs (/var/log/kern.log, dmesg) for NULL pointer dereference messages referencing the idpf driver module
  • Implement system monitoring for unexpected kernel panics or oops events on systems with Intel network adapters using idpf driver
  • Deploy audit rules to track ethtool command execution patterns, particularly -x (show RSS) and -L (set channels) flags in sequence
  • Use kernel tracing tools (ftrace, eBPF) to monitor idpf_get_rxfh function calls and validate RSS LUT state

Monitoring Recommendations

  • Configure crash dump collection (kdump) to capture kernel state for post-incident analysis
  • Implement automated alerting for kernel panic events in centralized logging systems
  • Monitor network interface state transitions combined with ethtool invocations for anomalous patterns
  • Deploy SentinelOne agents with kernel-level visibility to detect exploitation attempts targeting this vulnerability

How to Mitigate CVE-2026-22993

Immediate Actions Required

  • Apply the kernel patches from the official kernel git repository as soon as possible
  • Ensure network interfaces are in an up state before executing RSS configuration queries via ethtool
  • Restrict access to network configuration commands (ethtool, ifconfig, ip) to trusted administrators only
  • Consider temporarily disabling or blacklisting the idpf driver if not critical to operations until patches are applied

Patch Information

The Linux kernel development team has released patches to address this vulnerability. The fix modifies the soft reset behavior to:

  1. Set the RSS LUT to default values based on updated queue count only if the reset resulted from a queue count change
  2. Preserve user-configured LUT settings when they exist
  3. Avoid unnecessary RSS LUT manipulation when queue count remains unchanged

Patches are available from the official kernel git repository:

  • Kernel Git Commit ab92fa4dd81b
  • Kernel Git Commit ebecca5b0938

Workarounds

  • Ensure network interfaces are administratively up (ifconfig eth1 up or ip link set eth1 up) before querying RSS configuration
  • Implement wrapper scripts for ethtool commands that verify interface state before executing RSS-related queries
  • Use access control mechanisms (sudo policies, SELinux/AppArmor) to restrict ethtool command execution to authorized users only
  • Monitor and rate-limit network configuration changes to prevent rapid soft reset sequences
bash
# Workaround: Ensure interface is up before querying RSS configuration
# Check interface state before running ethtool RSS queries
INTERFACE="eth1"
STATE=$(cat /sys/class/net/${INTERFACE}/operstate 2>/dev/null)
if [ "$STATE" != "up" ]; then
    echo "Warning: Interface $INTERFACE is not up. Bringing interface up first."
    ip link set $INTERFACE up
    sleep 1
fi
ethtool -x $INTERFACE

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

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Git Commit Change
  • Related CVEs
  • CVE-2026-23462: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-23458: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-23435: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-23456: Linux Kernel Use-After-Free 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