Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-23258

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

CVE-2026-23258 is a use-after-free vulnerability in the Linux kernel's liquidio network driver that causes memory leaks during netdev setup failures. This article covers technical details, affected versions, and mitigation.

Published: March 20, 2026

CVE-2026-23258 Overview

A memory leak vulnerability has been discovered in the Linux kernel's LiquidIO network driver (liquidio). The vulnerability exists in the setup_nic_devices() function where the network device structure (netdev) is allocated using alloc_etherdev_mq() but the pointer is not properly stored before queue setup operations, leading to a memory leak condition when error paths are triggered.

Critical Impact

If netif_set_real_num_rx_queues() or netif_set_real_num_tx_queues() fails, the allocated network device memory cannot be freed by the cleanup function liquidio_destroy_nic_device(), resulting in a kernel memory leak that could lead to resource exhaustion over time.

Affected Products

  • Linux kernel with LiquidIO network driver enabled
  • Systems using Cavium LiquidIO intelligent server adapters
  • Multiple stable kernel branches (see patch commits)

Discovery Timeline

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

Technical Details for CVE-2026-23258

Vulnerability Analysis

This vulnerability represents a Memory Leak condition in the Linux kernel's LiquidIO network driver. The issue stems from improper initialization ordering in the setup_nic_devices() function. When a network device is allocated using alloc_etherdev_mq(), the returned pointer should be immediately stored in a location accessible to cleanup routines. However, in the vulnerable code path, the pointer to oct->props[i].netdev is only assigned after calling queue setup functions.

The vulnerability was identified through static analysis tooling and code review. While the direct security impact is a memory leak rather than arbitrary code execution, sustained exploitation could lead to kernel memory exhaustion, potentially causing system instability or denial of service conditions on systems using LiquidIO network adapters.

Root Cause

The root cause is an improper initialization sequence in the setup_nic_devices() function. The network device pointer is stored in oct->props[i].netdev only after the calls to netif_set_real_num_rx_queues() and netif_set_real_num_tx_queues(). If either function fails before the pointer assignment, the error handling path returns without the ability to free the allocated netdev structure. The cleanup function liquidio_destroy_nic_device() relies on oct->props[i].netdev being non-NULL to locate and free the network device, but since it's still NULL at the point of failure, the allocated memory becomes orphaned.

Attack Vector

The attack vector for this vulnerability is local and requires specific conditions to trigger. An attacker would need the ability to cause the queue setup functions to fail, which could potentially be achieved through:

  1. Resource exhaustion scenarios where netif_set_real_num_rx_queues() or netif_set_real_num_tx_queues() cannot allocate required resources
  2. Repeated driver loading/unloading cycles under constrained memory conditions
  3. Manipulating system state to force error conditions during device initialization

The exploitation would result in gradual memory consumption as each failed initialization leaks a netdev structure. Over time, this could exhaust available kernel memory. The vulnerability was discovered through static analysis, and no active exploitation has been observed in the wild.

Detection Methods for CVE-2026-23258

Indicators of Compromise

  • Gradual increase in kernel memory usage without corresponding process memory growth
  • Memory allocation failures in kernel logs related to network subsystem
  • LiquidIO driver initialization failures followed by memory pressure warnings
  • Elevated MemFree depletion in /proc/meminfo on systems with LiquidIO hardware

Detection Strategies

  • Monitor kernel logs for LiquidIO driver errors during initialization using dmesg | grep -i liquidio
  • Implement memory monitoring with alerts for unusual kernel slab cache growth patterns
  • Use kernel memory debugging tools like kmemleak to detect orphaned allocations
  • Deploy SentinelOne Singularity agent for kernel-level anomaly detection and memory leak monitoring

Monitoring Recommendations

  • Enable kernel memory debugging options (CONFIG_DEBUG_KMEMLEAK) in development and staging environments
  • Configure system monitoring to alert on sustained kernel memory growth
  • Implement automated health checks for LiquidIO adapter initialization status
  • Use perf or ftrace to monitor setup_nic_devices() execution paths for failures

How to Mitigate CVE-2026-23258

Immediate Actions Required

  • Apply the appropriate kernel patch from the stable branches listed in the external references
  • If patching is not immediately possible, monitor system memory usage closely on affected systems
  • Consider temporarily disabling the LiquidIO driver if the hardware is not critical to operations
  • Plan maintenance windows for kernel updates on production systems with LiquidIO adapters

Patch Information

The fix involves initializing oct->props[i].netdev before calling the queue setup functions. This ensures that if netif_set_real_num_rx_queues() or netif_set_real_num_tx_queues() fails, the cleanup function can properly locate and free the allocated network device structure.

Multiple patch commits are available across different kernel stable branches:

  • Kernel Git Commit 1d4590f
  • Kernel Git Commit 926ede0
  • Kernel Git Commit a0e57c0
  • Kernel Git Commit be10964
  • Kernel Git Commit c0ed6c7
  • Kernel Git Commit c81a851
  • Kernel Git Commit d028147

Workarounds

  • Blacklist the liquidio kernel module if the hardware is not in use: echo "blacklist liquidio" >> /etc/modprobe.d/blacklist.conf
  • Implement memory monitoring and automated system restarts when kernel memory reaches critical thresholds
  • Use alternative network adapters if LiquidIO hardware can be substituted in the environment
  • Schedule regular system reboots during maintenance windows to reclaim leaked memory on unpatched systems
bash
# Configuration example
# Blacklist the liquidio driver if not needed
echo "blacklist liquidio" | sudo tee /etc/modprobe.d/liquidio-blacklist.conf

# Verify the module is not loaded
lsmod | grep liquidio

# If loaded, remove it (if not in use)
sudo modprobe -r liquidio

# Apply kernel update (example for Debian/Ubuntu)
sudo apt update && sudo apt upgrade linux-image-$(uname -r)

# Reboot to apply kernel patches
sudo reboot

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 1d4590f

  • Kernel Git Commit 926ede0

  • Kernel Git Commit a0e57c0

  • Kernel Git Commit be10964

  • Kernel Git Commit c0ed6c7

  • Kernel Git Commit c81a851

  • Kernel Git Commit d028147
  • Related CVEs
  • CVE-2026-31475: Linux Kernel Use-After-Free Vulnerability

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

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

  • CVE-2026-31444: 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