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
    • 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-2024-44947

CVE-2024-44947: Linux Kernel Information Leak Vulnerability

CVE-2024-44947 is an information disclosure flaw in the Linux Kernel fuse subsystem that exposes uninitialized memory contents to userspace via mmap(). This article covers technical details, affected systems, and mitigation.

Updated: January 22, 2026

CVE-2024-44947 Overview

A vulnerability has been discovered in the Linux kernel's FUSE (Filesystem in Userspace) subsystem that allows information disclosure through uninitialized memory exposure. The fuse_notify_store() function fails to properly initialize page contents beyond end-of-file (EOF) before marking pages as uptodate, potentially exposing sensitive kernel memory to userspace processes via mmap().

Unlike fuse_do_readpage(), the fuse_notify_store() function does not enable page zeroing because it is designed to support partial page content modifications. This design decision creates a security gap where beyond-EOF page contents may remain uninitialized and subsequently become accessible to userspace applications through memory mapping operations.

Critical Impact

Local attackers with low privileges can exploit this information leak vulnerability to access uninitialized kernel memory contents, potentially exposing sensitive data from previous memory allocations. This primarily affects systems without init-on-alloc memory initialization enabled.

Affected Products

  • Linux Kernel versions prior to patched releases
  • Linux Kernel 6.11-rc1, 6.11-rc2, 6.11-rc3
  • Systems without CONFIG_INIT_ON_ALLOC_DEFAULT_ON=y or equivalent kernel command line parameter

Discovery Timeline

  • September 2, 2024 - CVE-2024-44947 published to NVD
  • November 3, 2025 - Last updated in NVD database

Technical Details for CVE-2024-44947

Vulnerability Analysis

This vulnerability stems from improper initialization in the FUSE filesystem's notification store mechanism (CWE-665: Improper Initialization). When the fuse_notify_store() function processes page data, it can leave portions of memory pages beyond the end-of-file position in an uninitialized state. These uninitialized memory regions may contain stale data from previous kernel allocations.

The critical issue arises when the function marks such pages as "uptodate" without ensuring all page contents are properly initialized. Once marked uptodate, userspace applications can access these pages through mmap() system calls, inadvertently gaining access to kernel memory contents that should have been zeroed or otherwise sanitized.

This information leak primarily impacts systems that do not have automatic memory initialization enabled via the CONFIG_INIT_ON_ALLOC_DEFAULT_ON kernel configuration option or the corresponding boot parameter. On affected systems, an attacker with local access could potentially recover sensitive information from kernel memory, including data from previous allocations.

Root Cause

The root cause lies in the asymmetric handling of page initialization between fuse_do_readpage() and fuse_notify_store(). While fuse_do_readpage() enables page zeroing to ensure clean memory pages, fuse_notify_store() intentionally omits this step to support partial page content updates. This design creates a security vulnerability where beyond-EOF page regions remain uninitialized before the page is marked as uptodate, allowing uninitialized memory to be exposed to userspace.

Attack Vector

The vulnerability requires local access and low privileges to exploit. An attacker would need to:

  1. Create or access a FUSE-mounted filesystem
  2. Trigger the fuse_notify_store() code path with carefully crafted operations
  3. Use mmap() to map the affected pages into their address space
  4. Read the beyond-EOF portions of the mapped pages to access uninitialized kernel memory

The attack is limited to information disclosure without direct impact on system integrity or availability. The exploitation complexity is low, requiring no user interaction.

Detection Methods for CVE-2024-44947

Indicators of Compromise

  • Unusual mmap() system calls targeting FUSE-mounted filesystems
  • Processes attempting to read beyond EOF positions on FUSE files
  • Memory access patterns indicative of information disclosure attempts on FUSE mounts
  • Abnormal FUSE notification activity from userspace filesystem daemons

Detection Strategies

  • Monitor system calls related to FUSE operations, particularly mmap() with read permissions on FUSE filesystems
  • Implement audit logging for FUSE mount operations and subsequent file access patterns
  • Deploy kernel-level monitoring for fuse_notify_store() invocations followed by memory mapping operations
  • Use security tools capable of detecting memory disclosure attack patterns

Monitoring Recommendations

  • Enable comprehensive audit logging for FUSE-related kernel operations
  • Monitor for processes accessing memory regions beyond expected file boundaries
  • Track FUSE daemon behavior for anomalous notification patterns
  • Consider enabling CONFIG_INIT_ON_ALLOC_DEFAULT_ON as a defense-in-depth measure while patching

How to Mitigate CVE-2024-44947

Immediate Actions Required

  • Apply the latest kernel security patches from your Linux distribution
  • Enable init-on-alloc via the init_on_alloc=1 kernel boot parameter as an immediate mitigation
  • Review systems with FUSE filesystems for potential exploitation attempts
  • Prioritize patching on multi-user systems where local privilege boundaries are security-critical

Patch Information

Multiple patches have been released across various kernel stable branches to address this vulnerability. The fix ensures that fuse_notify_store() properly initializes beyond-EOF page contents before marking pages as uptodate.

Key patch commits:

  • Kernel Git Commit 18a06724
  • Kernel Git Commit 3c0da3d1
  • Kernel Git Commit 8c78303e

Debian users should refer to the Debian LTS Announcement for distribution-specific updates.

Additional technical details are available in the Project Zero Issue Report.

Workarounds

  • Enable kernel memory initialization at boot with init_on_alloc=1 kernel parameter
  • Rebuild the kernel with CONFIG_INIT_ON_ALLOC_DEFAULT_ON=y if possible
  • Restrict access to FUSE filesystem operations for untrusted users
  • Consider disabling FUSE support on systems where it is not required until patches are applied
bash
# Enable init-on-alloc via kernel boot parameter
# Add to GRUB configuration (/etc/default/grub)
GRUB_CMDLINE_LINUX="init_on_alloc=1"

# Update GRUB and reboot
sudo update-grub
sudo reboot

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

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.54%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-665
  • Technical References
  • Chromium Project Issue Report

  • Debian LTS Announcement

  • Debian LTS Announcement
  • Vendor Resources
  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update
  • Related CVEs
  • CVE-2026-23430: Linux Kernel Memory Leak Vulnerability

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

  • CVE-2026-23421: Linux Kernel Information Disclosure Flaw

  • CVE-2026-23303: 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