A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-23454

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

CVE-2026-23454 is a use-after-free vulnerability in the Linux kernel's MANA driver that allows race conditions during hardware channel teardown. This post covers technical details, affected versions, and mitigation.

Updated: May 16, 2026

CVE-2026-23454 Overview

CVE-2026-23454 is a use-after-free vulnerability in the Linux kernel's Microsoft Azure Network Adapter (MANA) driver. The flaw exists in mana_hwc_destroy_channel(), where hwc->caller_ctx is freed before the Hardware Channel's Completion Queue (CQ) and Event Queue (EQ) are torn down. An in-flight interrupt request (IRQ) handler running on another CPU can dereference the freed memory through mana_hwc_handle_resp(), producing a use-after-free or NULL pointer dereference [CWE-416]. The issue affects Linux kernel builds that include the MANA networking driver, which is used by Azure virtual machines. Upstream maintainers resolved the bug by reordering teardown to reverse-of-creation order.

Critical Impact

A concurrent CQ interrupt can dereference freed caller_ctx and rxq->msg_buf pointers, resulting in kernel memory corruption or denial of service on affected Azure-hosted Linux systems.

Affected Products

  • Linux kernel builds containing the net/mana driver (Microsoft Azure Network Adapter)
  • Azure virtual machines running affected upstream and stable Linux kernel branches
  • Distributions shipping the MANA driver prior to applying the referenced stable commits

Discovery Timeline

  • 2026-04-03 - CVE-2026-23454 published to NVD
  • 2026-04-18 - Last updated in NVD database

Technical Details for CVE-2026-23454

Vulnerability Analysis

The MANA driver implements a Hardware Channel (HWC) used to communicate with the Azure host. During teardown, mana_hwc_destroy_channel() invokes mana_smc_teardown_hwc() to signal the hardware to stop, then calls kfree(hwc->caller_ctx) before destroying the CQ and EQ. The hardware stop signal does not synchronize against IRQ handlers already executing on other CPUs. IRQ synchronization only happens later, inside mana_hwc_destroy_cq() via mana_gd_destroy_eq() and mana_gd_deregister_irq(). Between these two points, a CQ interrupt can fire and call mana_hwc_rx_event_handler(), which dereferences the freed caller_ctx and rxq->msg_buf through mana_hwc_handle_resp(). The result is reading or writing kernel heap memory that has been returned to the slab allocator.

Root Cause

The root cause is incorrect teardown ordering. Resources are not freed in reverse-of-creation order, and the driver relies on a hardware stop request to halt interrupts without explicit IRQ synchronization. This creates a window where the interrupt path and the cleanup path race over the same allocation.

Attack Vector

Triggering the condition requires a teardown of the MANA HWC concurrent with in-flight CQ interrupts. The vulnerability is not network-reachable in the traditional sense — exploitation depends on local timing during driver unload, device reset, or VM lifecycle events. Successful exploitation can cause kernel panics or memory corruption that may be leveraged for privilege escalation on Azure Linux guests.

No verified public proof-of-concept code is available. The mechanism is documented in the upstream commit messages referenced in the Linux Kernel stable tree.

Detection Methods for CVE-2026-23454

Indicators of Compromise

  • Kernel oops or panic stack traces referencing mana_hwc_handle_resp, mana_hwc_rx_event_handler, or mana_hwc_destroy_channel
  • KASAN reports flagging use-after-free in slab objects associated with the MANA driver
  • Unexpected MANA device resets or NIC disconnects on Azure Linux guests

Detection Strategies

  • Enable Kernel Address Sanitizer (KASAN) in test environments to surface use-after-free conditions in the MANA teardown path
  • Inventory kernel versions across Azure Linux fleets and compare against the fixed commits in the stable tree
  • Monitor dmesg and journald for kernel faults involving mana symbols, particularly during VM reboots or hot-remove events

Monitoring Recommendations

  • Forward kernel logs from Azure Linux instances to a centralized logging or SIEM platform for pattern matching on MANA-related faults
  • Alert on repeated kernel crashes or NIC reset cycles on hosts running unpatched kernels
  • Track kernel package versions during patch cycles to confirm coverage of all stable branches affected

How to Mitigate CVE-2026-23454

Immediate Actions Required

  • Apply the kernel update from your distribution that incorporates the MANA teardown reordering fix
  • Reboot affected Azure Linux guests after patching to load the corrected kernel
  • Prioritize remediation on hosts that perform frequent driver reloads, live migrations, or device hot-plug operations

Patch Information

The upstream fix reorders teardown so that TX/RX work queues and the CQ/EQ are destroyed before hwc->caller_ctx is freed. This guarantees all in-flight interrupt handlers complete before the memory they access is released. Stable backports are available in the following commits: 05d3457, 249e905, 2b00190, afdb153, b88edf1, e23bf44, and fa103fc.

Workarounds

  • No supported workaround replaces patching; the MANA driver is required for Azure network connectivity on supported VM SKUs
  • Avoid unnecessary driver reloads or device resets on unpatched hosts to reduce the timing window
  • Where feasible, schedule downtime to apply the vendor kernel update rather than relying on runtime mitigations
bash
# Verify the running kernel version and check for available updates
uname -r

# Debian/Ubuntu
sudo apt update && sudo apt install --only-upgrade linux-image-$(uname -r | sed 's/.*-//')

# RHEL/CentOS/Azure Linux
sudo dnf update kernel

# Reboot to activate the patched kernel
sudo systemctl 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.03%

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

  • Linux Kernel Commit

  • Linux Kernel Commit

  • Linux Kernel Commit

  • Linux Kernel Commit

  • Linux Kernel Commit

  • Linux Kernel Commit
  • Related CVEs
  • CVE-2026-46241: Linux Kernel Use-After-Free Vulnerability

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

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

  • CVE-2026-46222: Linux Kernel Use-After-Free Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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