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

CVE-2025-71135: Linux Kernel RAID5 Null Pointer Vulnerability

CVE-2025-71135 is a null pointer dereference vulnerability in Linux kernel's md/raid5 subsystem that can cause system crashes. This article covers the technical details, affected versions, impact, and mitigation strategies.

Published: January 23, 2026

CVE-2025-71135 Overview

CVE-2025-71135 is a null pointer dereference vulnerability in the Linux kernel's md/raid5 subsystem, specifically within the raid5_store_group_thread_cnt() function. This vulnerability occurs when the mddev->private pointer is assigned to the conf variable but is not properly validated before being dereferenced in subsequent calls to raid5_quiesce().

Critical Impact

A null pointer dereference in the Linux kernel's RAID5 subsystem could lead to kernel panics and system crashes, potentially causing denial of service conditions on affected systems running software RAID5 configurations.

Affected Products

  • Linux Kernel (md/raid5 subsystem)
  • Systems using software RAID5 configurations
  • Linux distributions with unpatched kernel versions

Discovery Timeline

  • 2026-01-14 - CVE CVE-2025-71135 published to NVD
  • 2026-01-14 - Last updated in NVD database

Technical Details for CVE-2025-71135

Vulnerability Analysis

The vulnerability exists in the raid5_store_group_thread_cnt() function where proper null pointer validation is incomplete. While the code does check if conf is NULL after assigning mddev->private to it, the function continues execution and calls raid5_quiesce() even when the validation should have prevented this path.

Inside raid5_quiesce(), the mddev->private pointer is assigned to conf again and subsequently dereferenced in multiple locations, including accessing conf->quiesce and calling wake_up(&conf->wait_for_quiescent). When mddev->private is NULL, these dereferences result in a null pointer dereference condition.

Root Cause

The root cause is improper control flow handling after detecting a NULL conf pointer. The existing null check fails to properly exit the function before raid5_quiesce() is invoked. The correct behavior, as implemented in similar functions like raid5_change_consistency_policy(), is to unlock mddev and return from the function immediately when conf is determined to be NULL, preventing any subsequent code from attempting to dereference the null pointer.

Attack Vector

The attack vector for this vulnerability is local, requiring access to the system to trigger the condition. An attacker or malicious local user could potentially trigger this vulnerability by manipulating RAID5 configuration parameters through the sysfs interface, specifically by writing to the group_thread_cnt attribute when the RAID array is in an uninitialized or partially configured state.

The vulnerability is triggered through the following sequence:

  1. A RAID5 array is in a state where mddev->private is NULL
  2. A write operation targets the group_thread_cnt sysfs attribute
  3. raid5_store_group_thread_cnt() is invoked
  4. The function proceeds to call raid5_quiesce() despite the NULL condition
  5. Null pointer dereference occurs when accessing conf members

Detection Methods for CVE-2025-71135

Indicators of Compromise

  • Kernel panic messages referencing raid5_quiesce or raid5_store_group_thread_cnt
  • System crashes during RAID5 configuration changes
  • Unexpected kernel oops events in systems running software RAID5

Detection Strategies

  • Monitor kernel logs for null pointer dereference errors in the md/raid5 subsystem
  • Implement kernel crash dump analysis to identify exploitation attempts
  • Enable kernel address sanitizer (KASAN) to detect null pointer dereferences during testing

Monitoring Recommendations

  • Configure persistent kernel logging to capture crash events before system reboot
  • Deploy endpoint detection and response (EDR) solutions capable of monitoring kernel-level anomalies
  • Review system stability logs for patterns of RAID5-related crashes

How to Mitigate CVE-2025-71135

Immediate Actions Required

  • Update to a patched Linux kernel version that includes the fix for CVE-2025-71135
  • Review kernel configurations on systems using software RAID5
  • Restrict access to sysfs RAID configuration interfaces to privileged users only

Patch Information

The Linux kernel development team has released patches to address this vulnerability. The fix ensures that the function properly unlocks mddev and returns immediately when conf is NULL, preventing the null pointer dereference condition.

Patches are available through the following kernel.org commits:

  • Kernel.org Commit Review
  • Kernel.org Commit Update
  • Kernel.org Commit Change

Workarounds

  • Limit access to the RAID5 sysfs attributes by restricting permissions on /sys/block/md*/md/group_thread_cnt
  • Monitor and restrict unprivileged user access to RAID management utilities
  • Consider using hardware RAID controllers instead of software RAID5 on critical systems until patches are applied
bash
# Restrict access to RAID5 group_thread_cnt sysfs attribute
chmod 600 /sys/block/md*/md/group_thread_cnt

# Verify RAID array status before configuration changes
cat /proc/mdstat

# Check kernel version for patch status
uname -r

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel.org Commit Review

  • Kernel.org Commit Update

  • Kernel.org Commit Change
  • Related CVEs
  • CVE-2026-31439: Linux Kernel XDMA Error Handling Flaw

  • CVE-2026-31441: Linux Kernel Memory Leak Vulnerability

  • CVE-2026-31434: Linux Kernel Memory Leak Vulnerability

  • CVE-2026-31435: Linux Kernel Read Abandonment 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