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
    • 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-23195

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

CVE-2026-23195 is a use-after-free vulnerability in the Linux kernel cgroup/dmem component that can lead to memory corruption. This article covers the technical details, affected versions, security impact, and mitigation strategies.

Published: February 20, 2026

CVE-2026-23195 Overview

CVE-2026-23195 is a Use-After-Free (UAF) vulnerability in the Linux kernel's cgroup device memory (dmem) subsystem. The vulnerability occurs when a memory pool is freed while callers still hold references to it, leading to a slab-use-after-free condition in the page_counter_uncharge function. This can result in memory corruption and potential system instability.

Critical Impact

The vulnerability allows a Use-After-Free condition in the kernel's memory management subsystem, potentially leading to kernel memory corruption, denial of service, or privilege escalation when a cgroup dmem pool is accessed after being freed.

Affected Products

  • Linux kernel versions with cgroup/dmem functionality
  • Linux kernel version 6.19.0-rc7-next-20260129 and potentially earlier versions
  • Systems using device memory cgroup (dmem) features

Discovery Timeline

  • 2026-02-14 - CVE CVE-2026-23195 published to NVD
  • 2026-02-18 - Last updated in NVD database

Technical Details for CVE-2026-23195

Vulnerability Analysis

This Use-After-Free vulnerability exists in the Linux kernel's cgroup device memory (dmem) pool management code. The issue manifests when a memory region associated with a dmem pool is unregistered while callers still hold active references to the pool. The kernel frees the pool memory prematurely, but subsequent operations—such as dmem_cgroup_uncharge—attempt to access the now-freed memory structure.

The KASAN (Kernel Address Sanitizer) report indicates an 8-byte write operation occurring at a memory address within a freed 512-byte slab allocation. The offending access occurs in the page_counter_uncharge function, which is called during the charge accounting cleanup process. This creates a dangerous window where memory that has been returned to the slab allocator can be corrupted by stale pointer dereferences.

Root Cause

The root cause is improper lifetime management of dmem pool objects. The original implementation lacked reference counting for pool structures, allowing pools to be freed during memory region unregistration even when external callers still held references to them. Without proper reference counting, the kernel cannot track whether the pool is still in use by other components, leading to premature deallocation.

The call trace shows dmem_cgroup_uncharge at offset 0x1f/0x260 invoking page_counter_uncharge at offset 0x65/0x150, demonstrating that uncharge operations were attempting to access pool data structures that had already been freed by task 0 (the idle/swapper task or kworker).

Attack Vector

The attack vector for this vulnerability involves triggering the race condition between pool deallocation and uncharge operations. An attacker with the ability to load kernel modules (as indicated by task insmod/527 in the trace) or manipulate cgroup device memory registrations could potentially exploit this condition.

The vulnerability can be triggered by:

  1. Allocating and using a dmem cgroup pool
  2. Initiating an unregister operation on the associated memory region
  3. Racing with pending uncharge operations that still reference the pool
  4. Causing the kernel to write to freed memory, potentially corrupting subsequent allocations

While exploitation complexity is non-trivial due to the timing requirements, successful exploitation could lead to kernel memory corruption, denial of service, or potentially privilege escalation if an attacker can control the contents of the reallocated slab object.

Detection Methods for CVE-2026-23195

Indicators of Compromise

  • Kernel log messages containing "KASAN: slab-use-after-free in page_counter_uncharge"
  • System crashes or kernel panics during cgroup dmem operations
  • Tainted kernel flags indicating out-of-tree module activity ([O]=OOT_MODULE)
  • Unexpected kernel memory state errors in the kmalloc-512 cache

Detection Strategies

  • Enable KASAN (Kernel Address Sanitizer) in kernel builds to detect UAF conditions at runtime
  • Monitor kernel logs for memory corruption warnings related to dmem_cgroup functions
  • Implement kernel tracing on page_counter_uncharge and dmem_cgroup_uncharge functions
  • Deploy kernel debugging tools to track slab allocation patterns in production environments

Monitoring Recommendations

  • Configure centralized logging to capture kernel messages from /dev/kmsg or dmesg output
  • Set up alerts for KASAN reports and memory sanitizer violations in kernel logs
  • Monitor system stability metrics for unexpected crashes during cgroup operations
  • Track module loading events with auditd to identify potential exploitation attempts

How to Mitigate CVE-2026-23195

Immediate Actions Required

  • Apply the kernel patches referenced in the kernel git commits
  • Update to a patched Linux kernel version containing the reference counting fix
  • Restrict kernel module loading capabilities to trusted administrators only
  • Consider disabling dmem cgroup functionality if not required in your environment

Patch Information

The vulnerability has been resolved in the Linux kernel through the addition of a reference counter to each dmem pool structure. This ensures that pools are only freed when their reference count drops to zero, preventing the UAF condition. The fix is available in the following commits:

  • Commit 99a2ef5 - Primary fix implementing pool reference counting
  • Commit d3081353 - Additional stability improvements

Workarounds

  • Limit access to kernel module loading using Linux Security Modules (LSM) like AppArmor or SELinux
  • Avoid unregistering dmem memory regions while operations are in progress
  • Use cgroup v2 with careful lifecycle management to minimize exposure
  • Deploy kernel live patching solutions if available for your distribution
bash
# Check current kernel version and verify patch status
uname -r
# Verify if cgroup dmem is in use
cat /proc/cgroups | grep -i dmem
# Restrict module loading via sysctl (temporary mitigation)
sysctl -w kernel.modules_disabled=1

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 99a2ef5

  • Kernel Git Commit d3081353
  • Related CVEs
  • CVE-2026-23462: Linux Kernel Use-After-Free Vulnerability

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

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

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