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-2025-37834

CVE-2025-37834: Linux Kernel Privilege Escalation Flaw

CVE-2025-37834 is a privilege escalation vulnerability in the Linux Kernel memory management subsystem that causes system crashes when reclaiming poisoned memory pages. This article covers technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2025-37834 Overview

A vulnerability has been discovered in the Linux kernel's memory management subsystem, specifically in the mm/vmscan component. The flaw occurs when the kernel attempts to reclaim hardware-poisoned (hwpoison) memory folios, leading to a kernel BUG condition. This occurs because the memory reclamation process does not properly check for hwpoison flags before attempting operations on memory pages that have been marked as corrupted.

When a dirty swapcache page is isolated by the reclaim process and subsequently marked as hardware-poisoned, the uptodate flag is cleared but the page remains in the LRU (Least Recently Used) list. Subsequent reclamation attempts on this poisoned page trigger a VM_BUG_ON_FOLIO assertion failure in add_to_swap(), causing a kernel panic.

Critical Impact

Local attackers can trigger kernel panics and system crashes by exploiting the race condition between memory failure injection and page reclamation, resulting in denial of service conditions.

Affected Products

  • Linux Kernel (multiple versions)
  • linux linux_kernel

Discovery Timeline

  • May 8, 2025 - CVE-2025-37834 published to NVD
  • November 14, 2025 - Last updated in NVD database

Technical Details for CVE-2025-37834

Vulnerability Analysis

The vulnerability resides in the shrink_folio_list() function within the kernel's memory reclamation code path. When hardware memory errors occur, the kernel marks affected pages with the hwpoison flag to prevent their use. However, the vmscan subsystem failed to check for this flag before attempting to reclaim such pages.

The exploitation scenario involves three stages: First, when a dirty swapcache page is isolated by the reclaim process (kswapd0) and the page isn't locked, a memory failure event marks the page as hwpoison. The me_swapcache_dirty() function clears the uptodate flag and attempts to delete the page from the LRU list, but this operation fails. The reclaim process then places the hwpoisoned page back into the LRU list.

Second, when the process mapping the hwpoisoned page exits, the page reference is deleted, but the page itself is never freed and remains in the LRU list indefinitely.

Third, when a subsequent reclamation cycle attempts to process this page, add_to_swap() triggers a VM_BUG_ON_FOLIO(!folio_test_uptodate(folio)) assertion at mm/swap_state.c:184, causing a kernel panic.

Root Cause

The root cause is the absence of a check for the hwpoison flag in shrink_folio_list() before attempting page reclamation operations. When me_swapcache_dirty() clears the uptodate flag on a hwpoisoned page but fails to remove it from the LRU list, the page enters an inconsistent state. The reclamation code assumes all pages in the LRU list are valid for reclamation, which is no longer true for hwpoisoned pages.

Additionally, hwpoisoned folios may not be unmapped by hwpoison_user_mappings() if the folio isn't in the LRU list at the time of the memory failure event, creating another edge case where the page remains mapped but corrupted.

Attack Vector

This vulnerability requires local access and low privileges to exploit. An attacker can trigger the vulnerability through the following sequence:

  1. Allocate and map memory pages to a process
  2. Cause the pages to become dirty swapcache pages
  3. Trigger memory pressure to initiate page reclamation
  4. Inject a memory failure event (via /sys/kernel/debug/hwpoison/ interfaces if available, or by inducing actual hardware errors)
  5. Time the injection to occur while the page is isolated but not locked by the reclaim process
  6. Exit the process mapping the page
  7. Trigger another reclamation cycle to hit the BUG assertion

The attack results in a kernel panic, causing complete system unavailability. While this requires precise timing and local access, the reproducibility has been confirmed using the Syzkaller fuzzing framework.

Detection Methods for CVE-2025-37834

Indicators of Compromise

  • Kernel panic messages containing VM_BUG_ON_FOLIO(!folio_test_uptodate(folio)) in system logs
  • Crash dumps showing call traces through add_to_swap(), shrink_folio_list(), and kswapd
  • System instability or unexpected reboots during high memory pressure conditions
  • Memory failure messages in dmesg indicating dirty swapcache page still referenced

Detection Strategies

  • Monitor kernel logs for hwpoison related error messages followed by BUG assertions
  • Deploy kernel crash dump analysis to identify this specific crash signature
  • Use eBPF probes to monitor for anomalous activity in memory reclamation paths
  • Implement audit logging for access to hardware error injection interfaces

Monitoring Recommendations

  • Configure kdump or crash kernel to capture memory dumps on panic for forensic analysis
  • Set up alerts for dmesg entries containing memory failure and hwpoison keywords
  • Monitor system availability metrics for unexpected restart patterns
  • Track kswapd activity and memory pressure indicators alongside system stability

How to Mitigate CVE-2025-37834

Immediate Actions Required

  • Update to patched Linux kernel versions that include the fix
  • Restrict access to hardware error injection interfaces (/sys/kernel/debug/hwpoison/)
  • Ensure only trusted users have local system access
  • Consider limiting memory pressure scenarios in sensitive environments until patching is complete

Patch Information

The fix modifies shrink_folio_list() to skip hwpoisoned pages during reclamation. Additionally, the patch ensures hwpoisoned folios are unmapped in shrink_folio_list() to prevent failures in hwpoison_user_mappings() when the folio isn't in the LRU list.

Official patches are available through the following kernel commits:

  • Kernel Commit 1b0449544c6482179ac84530b61fc192a6527bfd
  • Kernel Commit 1c9798bf8145a92abf45aa9d38a6406d9eb8bdf0
  • Kernel Commit 912e9f0300c3564b72a8808db406e313193a37ad

Workarounds

  • Restrict local access to the system to trusted administrators only
  • Disable or restrict access to debugfs hwpoison interfaces if not required for operations
  • Monitor and alert on memory failure events to quickly identify potential exploitation attempts
  • Consider deploying additional kernel hardening measures such as KASLR and stack protectors
bash
# Restrict access to hwpoison debug interfaces
chmod 600 /sys/kernel/debug/hwpoison/*

# Monitor for memory failure events
dmesg -w | grep -i "memory failure\|hwpoison"

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

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • NVD-CWE-noinfo
  • Vendor Resources
  • Linux Kernel Commit

  • Linux Kernel Commit

  • Linux Kernel Commit
  • 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