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

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

CVE-2026-23322 is a use-after-free vulnerability in the Linux kernel IPMI subsystem that causes list corruption and potential NULL pointer dereference. This article covers technical details, affected versions, and mitigations.

Published: March 27, 2026

CVE-2026-23322 Overview

A use-after-free and list corruption vulnerability has been discovered in the Linux kernel's IPMI (Intelligent Platform Management Interface) subsystem. The flaw exists in the smi_work() function, where improper error handling when the SMI sender returns an error leads to memory corruption and potential system crashes. When the sender fails, the function delivers an error response but jumps back to restart without properly cleaning up, resulting in the same message being processed multiple times with corrupted list state.

Critical Impact

This vulnerability can lead to list corruption ("list_add double add"), use-after-free conditions, and NULL pointer dereferences, potentially causing kernel crashes, denial of service, or privilege escalation on affected Linux systems.

Affected Products

  • Linux kernel with IPMI subsystem enabled
  • Systems utilizing IPMI for out-of-band management
  • Server hardware with IPMI/BMC controllers

Discovery Timeline

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

Technical Details for CVE-2026-23322

Vulnerability Analysis

The vulnerability resides in the IPMI subsystem's smi_work() function responsible for handling System Management Interface operations. When the SMI sender encounters an error condition, the function attempts to deliver an error response via deliver_err_response() but then executes a goto restart without properly cleaning up the internal state. This creates a dangerous race condition where:

  1. The intf->curr_msg pointer is not cleared, preventing new messages from being pulled
  2. The newmsg pointer continues to reference the already-processed message
  3. The sender() function is called again with the same message that was already handled

When sender() fails again on the same message, deliver_err_response() is called a second time with the same recv_msg structure that was already queued for delivery. This results in list_add corruption as the same node is added to the user_msgs list twice. Subsequently, when this corrupted list is traversed and memory is freed, use-after-free conditions occur, eventually leading to a NULL pointer dereference when accessing recv_msg->done.

Root Cause

The root cause is inadequate error handling in the smi_work() function. When a send operation fails, the function does not properly clean up the current message state before restarting the work loop. Specifically, the curr_msg is not set to NULL and the newmsg is not freed, leaving dangling references that cause subsequent operations to corrupt kernel data structures. This is a classic resource cleanup failure that leads to double-add list corruption and use-after-free memory safety violations.

Attack Vector

The attack vector for this vulnerability involves triggering conditions that cause the SMI sender to fail repeatedly. An attacker with access to IPMI interfaces or the ability to induce hardware errors could potentially exploit this flaw. The buggy sequence occurs as follows:

The initial sender() call fails, triggering deliver_err_response(recv_msg) which queues the receive message for delivery. The function then executes goto restart without clearing curr_msg. On restart, since curr_msg is not cleared, no new message is pulled and the same newmsg pointer is used. When sender() fails again on the same message, deliver_err_response(recv_msg) attempts to queue the same recv_msg structure again, corrupting the linked list and leading to memory safety violations during subsequent list operations.

Detection Methods for CVE-2026-23322

Indicators of Compromise

  • Kernel panic messages containing "list_add double add" corruption warnings
  • Kernel oops or crashes related to IPMI subsystem components (ipmi_msghandler, ipmi_si)
  • NULL pointer dereference errors in kernel logs referencing recv_msg->done
  • System instability during heavy IPMI operations or management traffic

Detection Strategies

  • Monitor kernel logs (dmesg, /var/log/kern.log) for list corruption or use-after-free messages
  • Implement kernel crash dump analysis to detect memory corruption patterns in IPMI structures
  • Deploy kernel live patching detection to identify unpatched systems
  • Use kernel address sanitizer (KASAN) in development environments to catch use-after-free conditions

Monitoring Recommendations

  • Enable kernel crash reporting and log aggregation for affected systems
  • Monitor IPMI-related system calls and driver activity for anomalies
  • Implement automated kernel version tracking to identify vulnerable systems
  • Configure alerts for unexpected IPMI subsystem errors or repeated sender failures

How to Mitigate CVE-2026-23322

Immediate Actions Required

  • Update the Linux kernel to a patched version containing the fix
  • Review systems using IPMI for out-of-band management for exposure
  • Restrict IPMI interface access to trusted management networks only
  • Monitor affected systems for kernel crashes until patches are applied

Patch Information

The vulnerability has been addressed in the Linux kernel with commits that fix the improper cleanup in smi_work(). The fix ensures that the message is freed and set to NULL on send errors, preventing the double-add list corruption. Additionally, newmsg is now always freed on send errors to prevent memory leaks.

Available kernel patches:

  • Kernel Patch Commit 594c11d
  • Kernel Patch Commit 65ff5d1
  • Kernel Patch Commit c08ec55

Workarounds

  • Disable IPMI subsystem if not required for system management operations
  • Limit IPMI interface exposure through network segmentation and firewall rules
  • Monitor IPMI-related kernel modules and consider unloading ipmi_si if not in active use
  • Implement rate limiting on IPMI operations to reduce likelihood of triggering the race condition
bash
# Configuration example
# Disable IPMI modules if not required
sudo modprobe -r ipmi_si
sudo modprobe -r ipmi_devintf
sudo modprobe -r ipmi_msghandler

# Blacklist IPMI modules to prevent auto-loading
echo "blacklist ipmi_si" | sudo tee /etc/modprobe.d/blacklist-ipmi.conf
echo "blacklist ipmi_devintf" | sudo tee -a /etc/modprobe.d/blacklist-ipmi.conf
echo "blacklist ipmi_msghandler" | sudo tee -a /etc/modprobe.d/blacklist-ipmi.conf

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

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Patch Commit 594c11d

  • Kernel Patch Commit 65ff5d1

  • Kernel Patch Commit c08ec55
  • Related CVEs
  • CVE-2026-23227: Linux Kernel Use-After-Free Vulnerability

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

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

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