Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-23183

CVE-2026-23183: Linux Kernel Buffer Overflow Vulnerability

CVE-2026-23183 is a buffer overflow vulnerability in the Linux kernel cgroup/dmem component that causes NULL pointer dereference. This article covers technical details, affected versions, security impact, and mitigation.

Published: February 20, 2026

CVE-2026-23183 Overview

A NULL pointer dereference vulnerability has been discovered in the Linux kernel's cgroup/dmem subsystem. The issue occurs when setting the dmem.max control file without providing a valid limitation value. This results in an invalid memory access during the strcmp() function call within the dmemcg_limit_write() handler, causing a kernel panic and system crash.

Critical Impact

Local users with access to cgroup control files can trigger a kernel NULL pointer dereference, causing a denial of service condition through system crash.

Affected Products

  • Linux kernel versions with cgroup/dmem subsystem (kernel 6.19.0-rc6 and related versions confirmed affected)
  • Systems utilizing device memory cgroup controllers
  • QEMU virtualized environments running affected kernel versions

Discovery Timeline

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

Technical Details for CVE-2026-23183

Vulnerability Analysis

This vulnerability represents a classic NULL pointer dereference condition in the Linux kernel's cgroup device memory management subsystem. The flaw exists in the dmemcg_limit_write() function, which handles write operations to the dmem.max control file. When a user writes a value in the format test/region0 without specifying a proper limitation, the function fails to properly validate the parsed options before attempting to use them in a string comparison operation.

The kernel stack trace reveals that the crash occurs at RIP: 0010:strcmp+0x10/0x30, where the function receives a NULL pointer in the RDI register (0x0000000000000000) as the first argument. This indicates that the region_name parsing did not properly handle the edge case where options may be absent or invalid after parsing.

The vulnerability can be exploited by any local user with write access to the cgroup control files, making it a significant concern for multi-tenant environments and containerized deployments where cgroup isolation is relied upon for resource management.

Root Cause

The root cause is insufficient input validation in the dmemcg_limit_write() function. After parsing the region_name from user input, the code proceeds to use the parsed options in a strcmp() call without first verifying that the options pointer is non-NULL. When a user provides input like echo test/region0 > dmem.max without a proper limitation value, the parsing logic results in a NULL options pointer that is subsequently dereferenced.

The fix, as referenced in the kernel git commits, adds a check to verify whether the options pointer is valid after parsing the region_name before proceeding with string comparison operations.

Attack Vector

The attack vector is local and requires the attacker to have write access to the cgroup dmem.max control file. The exploitation is straightforward:

  1. Attacker identifies a system with cgroup/dmem support enabled
  2. Attacker gains access to write to the dmem.max cgroup control file
  3. Attacker writes a malformed value without a proper limitation (e.g., echo test/region0 > dmem.max)
  4. The kernel attempts to parse and process the input, triggering the NULL pointer dereference
  5. System crashes with a kernel panic, resulting in denial of service

The vulnerability triggers through the following call chain: ksys_write() → vfs_write() → kernfs_fop_write_iter() → dmemcg_limit_write.constprop.0() → strcmp() where the NULL dereference occurs.

Detection Methods for CVE-2026-23183

Indicators of Compromise

  • Kernel panic messages containing "BUG: kernel NULL pointer dereference, address: 0000000000000000"
  • Stack traces showing dmemcg_limit_write in the call chain
  • System crashes associated with cgroup operations or writes to dmem.max files
  • Suspicious write operations to cgroup dmem control files from unexpected users or processes

Detection Strategies

  • Monitor kernel logs for NULL pointer dereference errors originating from dmemcg_limit_write or strcmp functions
  • Implement auditd rules to track write operations to cgroup dmem.max files
  • Deploy kernel module or eBPF-based monitoring for cgroup control file access patterns
  • Use SentinelOne's Singularity platform to detect anomalous cgroup operations that may indicate exploitation attempts

Monitoring Recommendations

  • Enable kernel crash dump collection to capture forensic data from exploitation attempts
  • Configure logging for cgroup namespace events and control file modifications
  • Monitor for repeated system crashes or unexpected reboots that may indicate active exploitation
  • Implement SentinelOne's behavioral AI to detect unusual patterns in container or cgroup management activities

How to Mitigate CVE-2026-23183

Immediate Actions Required

  • Apply the kernel patches referenced in the security commits as soon as possible
  • Restrict access to cgroup control files using appropriate file permissions and SELinux/AppArmor policies
  • Limit which users and processes can write to dmem.max cgroup files
  • Consider temporarily disabling the cgroup/dmem subsystem if not required for operations

Patch Information

Security patches have been committed to the Linux kernel stable branches. The fixes are available in the following commits:

  • Kernel Git Commit 43151f81288
  • Kernel Git Commit c13816e8fa23

The patch adds validation to check whether the options pointer is valid after parsing the region_name, preventing the NULL pointer from being passed to strcmp().

Workarounds

  • Restrict access to cgroup control files by adjusting file permissions (e.g., chmod 600 on dmem.max files)
  • Use mandatory access control frameworks (SELinux, AppArmor) to limit write access to cgroup files
  • Disable the cgroup/dmem controller if not required using kernel boot parameters
  • Implement namespace isolation to prevent untrusted users from accessing cgroup control files
bash
# Restrict access to cgroup dmem.max files
find /sys/fs/cgroup -name "dmem.max" -exec chmod 600 {} \;

# Example AppArmor rule to restrict dmem.max access
# Add to appropriate profile:
# deny /sys/fs/cgroup/**/dmem.max w,

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Git Commit Change
  • Related CVEs
  • CVE-2026-31449: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-31512: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-31438: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-31450: Linux Kernel Buffer Overflow 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