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

CVE-2026-31445: Linux Kernel Privilege Escalation Flaw

CVE-2026-31445 is a privilege escalation vulnerability in the Linux kernel affecting DAMON core memory management that may cause NULL pointer dereference. This article covers technical details, affected versions, and mitigations.

Published: April 23, 2026

CVE-2026-31445 Overview

A vulnerability has been identified in the Linux kernel's DAMON (Data Access MONitor) subsystem within mm/damon/core. The flaw occurs when damon_call() is used for online DAMON parameters update via damon_commit_ctx(). When damon_commit_ctx() fails due to internal memory allocation errors, the damon_ctx structure can be left in a partially updated (corrupted) state. Continued use of this corrupted context can lead to unexpected behaviors, including NULL pointer dereference vulnerabilities, particularly in scenarios involving damos_commit_dests() failures.

Critical Impact

Exploitation of this vulnerability can result in NULL pointer dereference, potentially causing kernel crashes or denial of service conditions. While memory allocation failures are rare, the consequences of using a corrupted DAMON context are severe.

Affected Products

  • Linux kernel (versions with DAMON subsystem prior to fix)

Discovery Timeline

  • 2026-04-22 - CVE CVE-2026-31445 published to NVD
  • 2026-04-23 - Last updated in NVD database

Technical Details for CVE-2026-31445

Vulnerability Analysis

The vulnerability stems from improper handling of partial context commits in the DAMON memory monitoring subsystem. When damon_commit_ctx() is invoked to update DAMON parameters online, it can fail for two primary reasons: invalid parameters or internal memory allocation failures. While API callers validate parameters before calling damon_commit_ctx(), they cannot prevent memory allocation failures.

When such an allocation failure occurs, the destination damon_ctx structure may be left in an inconsistent state—some fields updated while others remain unchanged. The function only guarantees that the corrupted damon_ctx can be safely deallocated using damon_destroy_ctx(), but it does not prevent subsequent use of the corrupted context by the DAMON kernel thread (kdamond).

This race between context corruption and continued operation creates conditions where NULL pointer dereferences can occur, particularly within damos_commit_dests() operations. While memory allocation failures are statistically rare ("arguably too small to fail"), the potential for kernel instability justifies remediation.

Root Cause

The root cause is the lack of a mechanism to flag and halt operations on a damon_ctx that has undergone a failed partial commit. Before the fix, there was no way to communicate to kdamond_fn() and other callers that a context corruption event had occurred, allowing DAMON to continue operating with corrupted data structures.

Attack Vector

This vulnerability is triggered through internal kernel operations rather than direct external attack vectors. The conditions require:

  1. An active DAMON monitoring context undergoing online parameter updates
  2. A memory allocation failure during damon_commit_ctx() execution
  3. Continued kernel thread operation with the corrupted context

While not directly exploitable by unprivileged users, systems under memory pressure or those with artificially constrained memory resources may encounter these conditions. The vulnerability primarily represents a reliability and stability issue that could result in kernel panics or denial of service.

The fix introduces a maybe_corrupted field in the damon_ctx structure. When damon_commit_ctx() fails, this field is set. The kdamond_call() function checks this field after each callback execution, ignoring remaining requests and returning if corruption is detected. Similarly, kdamond_fn() checks this field after kdamond_call() invocations, breaking the main loop to prevent use of the potentially corrupted context.

Detection Methods for CVE-2026-31445

Indicators of Compromise

  • Unexpected kernel panics or NULL pointer dereference errors in the DAMON subsystem
  • Kernel log messages indicating memory allocation failures in mm/damon/core
  • System instability during DAMON parameter reconfiguration operations
  • Stack traces referencing damon_commit_ctx(), kdamond_call(), or damos_commit_dests()

Detection Strategies

  • Monitor kernel logs for DAMON-related errors using dmesg or centralized logging
  • Implement kernel crash dump analysis to identify NULL pointer dereferences in the DAMON code path
  • Deploy runtime kernel monitoring tools to detect anomalous memory subsystem behavior
  • Use SentinelOne Singularity platform for real-time kernel event monitoring and anomaly detection

Monitoring Recommendations

  • Enable comprehensive kernel logging with increased verbosity for memory management subsystems
  • Configure crash dump collection to capture kernel state during failures
  • Implement automated alerting for DAMON-related kernel warnings or errors
  • Monitor system memory pressure indicators that could increase the likelihood of allocation failures

How to Mitigate CVE-2026-31445

Immediate Actions Required

  • Update to a patched Linux kernel version that includes the maybe_corrupted field implementation
  • Review system memory allocation policies to reduce pressure on kernel memory pools
  • Monitor systems for signs of DAMON-related instability
  • Consider temporarily disabling DAMON on critical systems until patches are applied

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability. The fix introduces a maybe_corrupted field in the damon_ctx structure to track and prevent use of corrupted contexts. Multiple commits have been applied to the stable kernel branches:

  • Kernel Git Commit 1b247cd
  • Kernel Git Commit 26f775a
  • Kernel Git Commit 9c495f9

Organizations should apply these patches through their standard kernel update processes or by updating to a kernel release that incorporates these fixes.

Workarounds

  • Disable DAMON monitoring on affected systems if the feature is not critical to operations
  • Ensure adequate system memory is available to minimize allocation failure scenarios
  • Implement memory overcommit restrictions to reduce kernel memory pressure
  • Monitor and alert on low memory conditions that could trigger the vulnerability
bash
# Check current kernel version
uname -r

# Verify DAMON is compiled into the kernel
grep CONFIG_DAMON /boot/config-$(uname -r)

# Monitor for DAMON-related kernel messages
dmesg | grep -i damon

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Git Commit 26f775a

  • Kernel Git Commit 9c495f9
  • Related CVEs
  • CVE-2026-31430: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-31443: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-31463: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-31459: Linux Kernel Privilege Escalation Flaw
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