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

CVE-2025-71230: Linux Kernel HFS Information Disclosure

CVE-2025-71230 is an information disclosure vulnerability in the Linux kernel's HFS filesystem that causes memory leaks when mount operations fail. This article covers technical details, affected versions, and mitigations.

Published: February 20, 2026

CVE-2025-71230 Overview

A memory leak vulnerability exists in the Linux kernel's HFS filesystem implementation. When HFS was converted to the new mount API, a bug was introduced that changed the allocation pattern of sb->s_fs_info. If setup_bdev_super() fails after a new superblock has been allocated by sget_fc(), but before hfs_fill_super() takes ownership of the filesystem-specific s_fs_info data, the memory is leaked.

Critical Impact

This vulnerability can lead to kernel memory exhaustion through repeated mount failures, potentially causing system instability or denial of service conditions on systems that handle HFS filesystem mounts.

Affected Products

  • Linux Kernel (HFS filesystem component)
  • Systems with HFS filesystem support enabled
  • Linux distributions using affected kernel versions

Discovery Timeline

  • 2026-02-18 - CVE CVE-2025-71230 published to NVD
  • 2026-02-18 - Last updated in NVD database

Technical Details for CVE-2025-71230

Vulnerability Analysis

The vulnerability resides in the HFS filesystem driver within the Linux kernel. During the migration to the new mount API, the allocation and ownership semantics of the superblock's filesystem-specific information (sb->s_fs_info) were altered in a way that introduced a memory leak condition.

The issue occurs in a specific failure path: when setup_bdev_super() encounters an error after sget_fc() has successfully allocated a new superblock but before hfs_fill_super() has completed and taken ownership of the s_fs_info structure. In this window, the allocated memory has no owner responsible for freeing it, resulting in a memory leak.

Root Cause

The root cause is improper resource management during filesystem mount operations. The conversion to the new mount API changed when and how sb->s_fs_info is allocated and freed. The original implementation properly handled cleanup in all failure scenarios, but the new implementation introduced a gap where early failures in setup_bdev_super() would leave allocated memory orphaned without a cleanup handler registered.

Attack Vector

The vulnerability can be triggered through repeated mount operations targeting the HFS filesystem. An attacker with the ability to mount filesystems (either through direct system access or by influencing mount operations) could repeatedly trigger the failure condition to exhaust kernel memory. The attack vector requires local access to the system with sufficient privileges to attempt filesystem mounts.

The fix implemented in hfs_kill_super() ensures that sb->s_fs_info is properly freed during superblock destruction, closing the memory leak regardless of where in the mount process the failure occurs.

Detection Methods for CVE-2025-71230

Indicators of Compromise

  • Unusual kernel memory consumption growth over time
  • Repeated HFS mount failure messages in system logs
  • Kernel memory allocation warnings or out-of-memory conditions

Detection Strategies

  • Monitor system logs for repeated HFS mount failures using dmesg or syslog analysis
  • Track kernel slab allocations related to HFS filesystem structures
  • Implement kernel memory usage monitoring with alerting on abnormal growth patterns
  • Review mount operation logs for suspicious patterns of failed mount attempts

Monitoring Recommendations

  • Enable kernel memory debugging options to detect memory leaks
  • Configure system monitoring to alert on kernel memory exhaustion
  • Audit mount operations for HFS filesystems on affected systems
  • Implement rate limiting on filesystem mount operations where feasible

How to Mitigate CVE-2025-71230

Immediate Actions Required

  • Apply the kernel patches from the official Linux kernel git repository
  • Consider disabling HFS filesystem support if not required (CONFIG_HFS_FS=n)
  • Restrict mount privileges to trusted users only
  • Monitor systems for signs of memory exhaustion

Patch Information

The vulnerability has been resolved in the Linux kernel. The fix ensures sb->s_fs_info is properly freed in hfs_kill_super(), eliminating the memory leak in all failure scenarios. Official patches are available through the Linux kernel git repository:

  • Kernel Git Commit 399219831514126bc9541e8eadefe02c6fbd9166
  • Kernel Git Commit 46c1d56ad321fb024761abd9af61a0cb616cf2f6

Workarounds

  • Disable HFS filesystem support in kernel configuration if not required
  • Restrict filesystem mount operations to trusted administrators
  • Implement mount operation monitoring and rate limiting
  • Use containerization to isolate mount operations from the host kernel
bash
# Disable HFS filesystem module loading
echo "install hfs /bin/false" >> /etc/modprobe.d/disable-hfs.conf
echo "install hfsplus /bin/false" >> /etc/modprobe.d/disable-hfs.conf

# Unload the module if currently loaded
modprobe -r hfs 2>/dev/null || true
modprobe -r hfsplus 2>/dev/null || true

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Git Commit Update
  • Related CVEs
  • CVE-2026-31428: Linux Kernel Information Disclosure Flaw

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

  • CVE-2026-23465: Linux Kernel Btrfs Logging Vulnerability

  • CVE-2026-23421: Linux Kernel Information Disclosure 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