A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-2024-46744

CVE-2024-46744: Linux Kernel Use-After-Free Vulnerability

CVE-2024-46744 is a use-after-free vulnerability in the Linux Kernel Squashfs filesystem caused by corrupted symbolic link size handling. This article covers the technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2024-46744 Overview

CVE-2024-46744 is a vulnerability in the Linux kernel's Squashfs filesystem implementation that affects the handling of symbolic link sizes. The vulnerability was discovered through Syzkaller, a kernel fuzzing tool, which reported a "KMSAN: uninit-value in pick_link" bug. This issue arises from inadequate sanity checking of symbolic link sizes read from disk, allowing corrupted values to trigger uninitialized memory access.

The vulnerability occurs when a maliciously crafted or corrupted Squashfs filesystem image contains a symbolic link with an invalid size value. When the kernel processes this symbolic link, the corrupted size value causes integer overflow, leading to uninitialized page access which could potentially be exploited for information disclosure or privilege escalation.

Critical Impact

A local attacker with access to mount Squashfs filesystems could exploit this vulnerability to access uninitialized kernel memory, potentially leading to privilege escalation or information disclosure on affected Linux systems.

Affected Products

  • Linux Kernel (multiple versions)
  • Linux Kernel 6.11 RC1, RC2, and RC3
  • Debian Linux (see LTS announcements)

Discovery Timeline

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

Technical Details for CVE-2024-46744

Vulnerability Analysis

This vulnerability stems from a lack of input validation in the Squashfs filesystem driver when processing symbolic link inodes. The flaw allows a corrupted symbolic link size value read from disk to propagate through the kernel's file handling code without proper bounds checking.

When squashfs_read_inode() reads a symbolic link from disk, it assigns the raw size value directly to inode->i_size. In the observed case, a corrupted value of 3875536935 was assigned. Subsequently, when squashfs_symlink_read_folio() processes this inode, it assigns the size to a signed integer length variable. This causes integer overflow, converting the large positive value to a negative number.

The loop responsible for filling page contents checks whether copied bytes are less than the length value. Since the length is now negative, this comparison always fails, causing the loop to be skipped entirely. The result is an uninitialized page being returned to user space, creating an information disclosure vector.

Root Cause

The root cause is missing input validation (CWE-59: Improper Link Resolution Before File Access) in the Squashfs symbolic link handling code. The kernel trusted the symbolic link size value read from the filesystem image without verifying it against expected bounds. This allowed malformed filesystem images to inject arbitrary size values that trigger the integer overflow condition.

The fix adds a sanity check to verify that the symbolic link size does not exceed expected maximum values before processing, preventing the overflow condition.

Attack Vector

Exploitation requires local access to the system with the ability to mount Squashfs filesystem images. An attacker could craft a malicious Squashfs image containing a symbolic link with a corrupted size value exceeding the maximum signed integer value. When a user or system process mounts this image and attempts to follow the symbolic link, the vulnerability is triggered.

The attack flow proceeds as follows:

  1. Attacker creates a malicious Squashfs image with a corrupted symlink size
  2. The image is mounted on the target system
  3. A process attempts to read or follow the malicious symbolic link
  4. The kernel processes the corrupted size value in squashfs_read_inode()
  5. Integer overflow occurs in squashfs_symlink_read_folio()
  6. Uninitialized kernel memory is exposed through the uninitalized page

Detection Methods for CVE-2024-46744

Indicators of Compromise

  • Kernel log messages containing "KMSAN: uninit-value in pick_link" errors
  • Unexpected behavior when accessing Squashfs-mounted filesystems
  • System instability or crashes when mounting untrusted Squashfs images
  • Kernel oops or panic messages referencing Squashfs symlink handling functions

Detection Strategies

  • Monitor kernel logs for KMSAN warnings related to pick_link or Squashfs operations
  • Implement file integrity monitoring on systems that frequently mount Squashfs images
  • Use kernel live patching detection to verify the vulnerability has been addressed
  • Deploy endpoint detection rules for anomalous Squashfs mount operations from untrusted sources

Monitoring Recommendations

  • Enable kernel auditing for mount operations involving Squashfs filesystems
  • Monitor for attempts to mount Squashfs images from non-standard locations
  • Implement anomaly detection for processes accessing symbolic links on recently mounted filesystems
  • Track kernel version information across endpoints to identify unpatched systems

How to Mitigate CVE-2024-46744

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the sanity check fix
  • Restrict unprivileged user access to mount Squashfs filesystems
  • Audit systems for any untrusted or externally-sourced Squashfs images
  • Consider disabling Squashfs support on systems where it is not required

Patch Information

The Linux kernel maintainers have released patches across multiple stable branches to address this vulnerability. The fix adds validation logic to check that the symbolic link size read from disk does not exceed the expected maximum before processing.

Official patches are available through the kernel Git repository:

  • Kernel Git Commit 087f25b2d36a
  • Kernel Git Commit 1b9451ba6f21
  • Kernel Git Commit 5c8906de98d0
  • Kernel Git Commit 810ee43d9cd2

Debian users should consult the Debian LTS Security Announcements for distribution-specific updates.

Workarounds

  • Disable the Squashfs kernel module if not required: modprobe -r squashfs
  • Use SELinux or AppArmor policies to restrict Squashfs mount capabilities to trusted processes only
  • Implement mount namespace isolation to limit the impact of mounting untrusted filesystem images
  • Block mounting of Squashfs images from untrusted sources at the organizational policy level
bash
# Disable Squashfs module loading
echo "install squashfs /bin/true" >> /etc/modprobe.d/disable-squashfs.conf

# Blacklist Squashfs to prevent automatic loading
echo "blacklist squashfs" >> /etc/modprobe.d/blacklist-squashfs.conf

# Remove currently loaded Squashfs module (if possible)
modprobe -r squashfs

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

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechLinux Kernel

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-59
  • Technical References
  • Debian LTS Announcement

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

  • Kernel Git Commit Note

  • Kernel Git Commit Note

  • Kernel Git Commit Note

  • Kernel Git Commit Note

  • Kernel Git Commit Note

  • Kernel Git Commit Note

  • Kernel Git Commit Note
  • Related CVEs
  • CVE-2026-46241: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-46233: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-46227: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-46222: Linux Kernel Use-After-Free Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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