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

CVE-2026-23256: Linux Kernel Memory Leak Vulnerability

CVE-2026-23256 is a memory leak vulnerability in the Linux kernel's liquidio network driver caused by an off-by-one error in cleanup code. This article covers technical details, affected versions, and mitigation steps.

Published: March 20, 2026

CVE-2026-23256 Overview

CVE-2026-23256 is a memory leak vulnerability in the Linux kernel's LiquidIO network driver, specifically affecting the Virtual Function (VF) setup_nic_devices() cleanup path. The vulnerability stems from an off-by-one error in the cleanup loop that causes the failing index to be skipped during resource deallocation, resulting in memory leaks.

The LiquidIO driver provides support for Cavium LiquidIO intelligent server adapters. When the setup_nic_devices() function encounters a failure during initialization, it attempts to clean up previously allocated resources. However, due to the incorrect loop condition using while(i--), the current failing index i is skipped, leaving allocated memory unreleased.

Critical Impact

Memory leak in Linux kernel LiquidIO driver cleanup path can lead to gradual memory exhaustion in systems using Cavium LiquidIO network adapters.

Affected Products

  • Linux Kernel (multiple stable branches)
  • Systems using Cavium LiquidIO intelligent server adapters
  • Virtual Function (VF) configurations of LiquidIO network devices

Discovery Timeline

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

Technical Details for CVE-2026-23256

Vulnerability Analysis

This vulnerability exists within the setup_nic_devices() function in the LiquidIO VF driver. The function initializes network devices in a loop, and upon encountering an error, it jumps to a cleanup label (setup_nic_dev_free) to release previously allocated resources.

The root cause is an off-by-one error in the cleanup loop implementation. When the initialization loop fails at index i, the cleanup code uses while(i--) to iterate through previously initialized devices. This post-decrement operation causes the loop to start cleanup from index i-1, completely skipping the resources that may have been partially allocated at the failing index i.

The issue was identified through code review and has been confirmed as compile-tested. In production environments with LiquidIO network adapters, this bug could lead to memory leaks during driver initialization failures, particularly in scenarios involving repeated load/unload cycles or dynamic VF configuration changes.

Root Cause

The vulnerability is caused by improper loop termination logic in the cleanup path. The while(i--) construct decrements the index before evaluating the loop condition and executing the cleanup code for that iteration. This means when an error occurs at index i, the loop starts cleaning up from i-1, leaving resources at index i leaked.

The fix modifies the cleanup loop to iterate from the current index i down to 0, ensuring all partially or fully allocated resources are properly freed, including those at the failing index.

Attack Vector

While this vulnerability is classified with an unknown attack vector, the practical impact is limited to local denial of service scenarios. An attacker with local access or the ability to trigger driver initialization failures could potentially exploit this memory leak to:

  1. Cause gradual memory exhaustion on the system
  2. Impact system stability through repeated triggering of the initialization failure path
  3. Affect availability of systems relying on LiquidIO network connectivity

The vulnerability requires specific conditions to trigger, including the presence of LiquidIO hardware and the ability to cause initialization failures in the VF setup path.

Detection Methods for CVE-2026-23256

Indicators of Compromise

  • Gradual increase in kernel memory usage on systems with LiquidIO adapters
  • Memory allocation failures or OOM (Out-of-Memory) events following LiquidIO driver operations
  • Kernel log entries indicating failed VF device initialization in the LiquidIO driver

Detection Strategies

  • Monitor /proc/meminfo and /proc/slabinfo for unusual memory consumption patterns related to network device structures
  • Implement kernel memory leak detection tools such as kmemleak to identify unreleased allocations
  • Review dmesg output for LiquidIO driver initialization failures or error messages

Monitoring Recommendations

  • Enable kernel memory debugging features (CONFIG_DEBUG_KMEMLEAK) in development and test environments
  • Set up alerting for repeated LiquidIO driver initialization failures
  • Monitor system memory trends on production systems using LiquidIO network adapters

How to Mitigate CVE-2026-23256

Immediate Actions Required

  • Update to a patched kernel version that includes the fix for CVE-2026-23256
  • Monitor affected systems for signs of memory exhaustion until patches can be applied
  • Review system logs for any indication of LiquidIO driver initialization failures

Patch Information

The vulnerability has been addressed in multiple Linux kernel stable branches. The following kernel commits contain the fix:

  • Kernel Git Commit 01fbca1
  • Kernel Git Commit 3bf519e
  • Kernel Git Commit 4640fa5
  • Kernel Git Commit 52b19b3
  • Kernel Git Commit 6cbba46
  • Kernel Git Commit 71a56b8
  • Kernel Git Commit bd680e5

Organizations should update to kernel versions containing these commits through their distribution's standard update mechanisms.

Workarounds

  • Avoid frequent loading/unloading of the LiquidIO VF driver on affected systems
  • If feasible, use Physical Function (PF) configurations instead of VF where possible
  • Schedule regular system reboots to reclaim leaked memory on systems that cannot be immediately patched
bash
# Check if LiquidIO driver is loaded
lsmod | grep liquidio

# Check kernel version for patch status
uname -r

# Monitor memory usage on affected systems
watch -n 60 'free -m && cat /proc/meminfo | grep -i slab'

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Git Commit 3bf519e

  • Kernel Git Commit 4640fa5

  • Kernel Git Commit 52b19b3

  • Kernel Git Commit 6cbba46

  • Kernel Git Commit 71a56b8

  • Kernel Git Commit bd680e5
  • Related CVEs
  • CVE-2026-23457: Linux Kernel Integer Truncation Vulnerability

  • CVE-2026-23442: Linux Kernel IPv6 SRv6 Null Pointer Flaw

  • CVE-2026-23431: Linux Kernel Memory Leak Vulnerability

  • CVE-2026-31391: Linux Kernel Atmel SHA204A OOM 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