A Leader in the 2025 Gartner® Magic Quadrant™ for Endpoint Protection Platforms. Five years running.A Leader in the Gartner® Magic Quadrant™Read the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI Security Portfolio
      Leading the Way in AI-Powered Security Solutions
    • 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
      Digital Forensics, IRR & Breach Readiness
    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
    • 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-23056

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

CVE-2026-23056 is a use-after-free vulnerability in the Linux kernel's uacce component caused by missing mremap support that can lead to double-free conditions. This article covers the technical details, impact, and mitigation.

Published: February 6, 2026

CVE-2026-23056 Overview

A vulnerability has been identified in the Linux kernel's UACCE (Unified Accelerator Framework) subsystem. The issue stems from the uacce_vm_ops structure not implementing a custom .mremap handler, allowing the default mremap behavior to potentially cause a double free condition. When an application performs a sequence of mmap, mremap, and munmap operations, the shared vm_private_data pointer can lead to q->qfr being freed twice when both the original and remapped VMAs are unmapped.

Critical Impact

Local attackers may exploit this double free condition to cause denial of service or potentially achieve memory corruption in the Linux kernel's accelerator framework.

Affected Products

  • Linux Kernel (versions with UACCE subsystem)
  • Systems using hardware accelerators through the Unified Accelerator Framework
  • Linux kernel builds with CONFIG_UACCE enabled

Discovery Timeline

  • 2026-02-04 - CVE CVE-2026-23056 published to NVD
  • 2026-02-05 - Last updated in NVD database

Technical Details for CVE-2026-23056

Vulnerability Analysis

The vulnerability exists in the UACCE (Unified Accelerator Framework) subsystem of the Linux kernel. The uacce_vm_ops structure, which defines virtual memory operations for UACCE devices, lacks an implementation of the .mremap callback function. When a driver does not implement .mremap, the kernel falls back to a default mremap method that copies the original VMA's vm_private_data pointer to the new VMA without proper handling.

This creates a dangerous scenario where the queue descriptor (q) and its associated qfr structure are referenced by multiple VMAs simultaneously. The exploitation flow involves: (1) mapping address p1 via mmap, (2) remapping to p2 via mremap, (3) unmapping p1, and (4) unmapping p2. Both munmap operations trigger vma_close, resulting in q->qfr being freed twice. While the code does set qfr to null after the first free (preventing immediate crashes in some cases), this represents a memory safety violation that could have unpredictable consequences.

Root Cause

The root cause is the absence of a .mremap handler in the uacce_vm_ops structure. The UACCE subsystem maintains per-queue memory state through vm_private_data, but the default kernel mremap behavior simply copies this pointer to new VMAs without considering the implications for the driver's resource management. The fix implements an explicit .mremap callback that returns -EPERM, preventing mremap operations entirely and informing userspace that this operation is not supported.

Attack Vector

A local attacker with access to a UACCE device (typically hardware accelerators) could trigger this vulnerability through a carefully crafted sequence of memory mapping system calls. The attack requires:

  1. Opening a UACCE device file descriptor
  2. Using mmap() to create an initial memory mapping
  3. Calling mremap() to create a second mapping pointing to the same queue resources
  4. Executing munmap() on both mappings to trigger the double free

The vulnerability is exploitable locally and requires the attacker to have permissions to access UACCE devices, which may be restricted depending on system configuration.

Detection Methods for CVE-2026-23056

Indicators of Compromise

  • Kernel oops or panic messages referencing UACCE or accelerator subsystems
  • Unusual patterns of mmap/mremap/munmap system calls targeting /dev/uacce/* devices
  • Memory corruption signatures in kernel logs related to slab allocator double frees
  • KASAN (Kernel Address Sanitizer) reports indicating use-after-free in UACCE code paths

Detection Strategies

  • Enable KASAN (Kernel Address Sanitizer) in development/testing environments to detect double free conditions
  • Monitor system call traces for suspicious mmap/mremap/munmap sequences on UACCE device files
  • Implement audit rules for accesses to /dev/uacce/* device nodes
  • Deploy kernel memory debugging options such as CONFIG_DEBUG_SLAB and CONFIG_DEBUG_PAGEALLOC

Monitoring Recommendations

  • Configure kernel auditing to log all system calls to UACCE device files
  • Set up alerts for kernel oops or panic events related to memory management subsystems
  • Monitor for processes making unusual patterns of memory mapping operations
  • Review access controls on UACCE devices to ensure only authorized users can interact with accelerator hardware

How to Mitigate CVE-2026-23056

Immediate Actions Required

  • Update the Linux kernel to a patched version containing the mremap fix
  • Restrict access to UACCE device files (/dev/uacce/*) to only trusted users and applications
  • If UACCE functionality is not required, consider disabling the module or rebuilding the kernel without CONFIG_UACCE
  • Audit applications using hardware accelerators for proper error handling of -EPERM returns from mremap

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability by implementing an explicit .mremap handler that returns -EPERM. The fix ensures that mremap operations on UACCE memory mappings are denied, preventing the double free condition. Patches are available through the official kernel git repository:

  • Kernel Git Commit 0269534
  • Kernel Git Commit 4c042bc
  • Kernel Git Commit a407ddd
  • Kernel Git Commit ba29b59

Workarounds

  • Restrict access to UACCE devices by modifying udev rules to limit device permissions
  • Use SELinux or AppArmor policies to prevent untrusted applications from accessing accelerator devices
  • Disable the UACCE kernel module if hardware accelerator functionality is not required: modprobe -r uacce
  • Apply kernel live patching solutions if available for your distribution while awaiting a full kernel update
bash
# Restrict UACCE device access
# Add to /etc/udev/rules.d/99-uacce-restrict.rules
KERNEL=="uacce*", MODE="0600", OWNER="root", GROUP="root"

# Disable UACCE module loading
echo "blacklist uacce" >> /etc/modprobe.d/blacklist-uacce.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 Git Commit Change 1

  • Kernel Git Commit Change 2

  • Kernel Git Commit Change 3

  • Kernel Git Commit Change 4
  • 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
  • English
  • 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