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-2023-26544

CVE-2023-26544: Linux Kernel Use-After-Free Vulnerability

CVE-2023-26544 is a use-after-free vulnerability in Linux Kernel 6.0.8 affecting the NTFS3 filesystem driver. This flaw can lead to system crashes or potential privilege escalation. This post covers technical details, affected versions, impact, and mitigation strategies.

Published: January 28, 2026

CVE-2023-26544 Overview

CVE-2023-26544 is a use-after-free vulnerability in the Linux kernel 6.0.8 affecting the NTFS3 file system driver. The flaw exists in the run_unpack function within fs/ntfs3/run.c and is triggered by a mismatch between NTFS sector size and media sector size. This memory corruption vulnerability can allow a local attacker with low privileges to potentially execute arbitrary code or cause system instability.

Critical Impact

Local attackers with low privileges can exploit this use-after-free condition to achieve high impact on system confidentiality, integrity, and availability, potentially leading to privilege escalation or arbitrary code execution.

Affected Products

  • Linux Kernel 6.0.8
  • Linux Kernel versions with NTFS3 driver enabled
  • Systems mounting NTFS file systems with mismatched sector sizes

Discovery Timeline

  • 2023-02-25 - CVE-2023-26544 published to NVD
  • 2025-05-05 - Last updated in NVD database

Technical Details for CVE-2023-26544

Vulnerability Analysis

This use-after-free vulnerability resides in the NTFS3 file system driver, specifically within the run_unpack function in fs/ntfs3/run.c. The vulnerability is classified as CWE-416 (Use After Free), which occurs when a program continues to use memory after it has been freed.

The root cause stems from improper handling of sector size differences between the NTFS file system and the underlying media. When the NTFS sector size differs from the media sector size, the code path in run_unpack can access memory that has already been freed, leading to undefined behavior.

This type of memory corruption vulnerability is particularly dangerous in kernel space, as successful exploitation could allow an attacker to escalate privileges, execute arbitrary code with kernel privileges, or cause a denial of service condition through system crash.

Root Cause

The vulnerability originates from inadequate bounds checking and memory lifecycle management when the run_unpack function processes NTFS run lists. When there is a discrepancy between the NTFS sector size configuration and the actual media sector size, the function may reference memory objects that have been deallocated. This race between memory deallocation and subsequent access creates the use-after-free condition.

Attack Vector

The attack requires local access to the system with low privileges. An attacker could craft a malicious NTFS volume or manipulate an existing one to trigger the sector size mismatch condition. When the vulnerable system mounts or accesses the crafted file system, the run_unpack function processes the malformed data, triggering the use-after-free condition.

The exploitation scenario involves:

  1. Creating or modifying an NTFS volume with specific sector size configurations
  2. Having the target system mount or access the malicious volume
  3. Triggering the code path in run_unpack that processes the mismatched sector sizes
  4. Exploiting the use-after-free to gain code execution or cause system instability

Technical details of the vulnerability and the fix can be found in the Linux Kernel Commit #887bfc546097 and the Linux Kernel Mailing List Post.

Detection Methods for CVE-2023-26544

Indicators of Compromise

  • Unexpected kernel crashes or panics when mounting NTFS volumes
  • Suspicious NTFS volumes with unusual sector size configurations
  • System instability following NTFS file system access operations
  • Kernel log entries indicating memory corruption in fs/ntfs3/run.c

Detection Strategies

  • Monitor kernel logs for NTFS3 driver errors and memory-related warnings
  • Implement file system monitoring to detect mounting of untrusted NTFS volumes
  • Deploy kernel address sanitizer (KASAN) in development environments to detect use-after-free conditions
  • Audit system access to external storage devices and removable media

Monitoring Recommendations

  • Configure kernel logging to capture NTFS3 driver warnings and errors at verbose levels
  • Implement endpoint detection rules for unexpected kernel module behavior
  • Monitor for privilege escalation attempts following NTFS file system operations
  • Enable SentinelOne kernel-level monitoring for memory corruption detection

How to Mitigate CVE-2023-26544

Immediate Actions Required

  • Update to a patched Linux kernel version that addresses this vulnerability
  • Restrict mounting of untrusted NTFS volumes on vulnerable systems
  • Disable NTFS3 kernel module if not required for operations
  • Implement strict access controls for removable media and external storage

Patch Information

The vulnerability has been addressed in the upstream Linux kernel. The fix is available in commit 887bfc546097fbe8071dac13b2fef73b77920899 in the mainline kernel repository. System administrators should update to kernel versions that include this patch.

For enterprise Linux distributions, consult your vendor's security advisories:

  • SUSE Bug Report #1208697
  • NetApp Security Advisory NTAP-20230316-0010

Workarounds

  • Disable the NTFS3 kernel module using modprobe -r ntfs3 if NTFS support is not required
  • Implement mount restrictions using /etc/fstab and mount policies to prevent untrusted NTFS volumes
  • Use application-level NTFS implementations (ntfs-3g via FUSE) as an alternative to the kernel driver
  • Implement strict physical access controls to prevent connection of malicious storage devices
bash
# Disable NTFS3 kernel module
sudo modprobe -r ntfs3

# Blacklist NTFS3 module to prevent automatic loading
echo "blacklist ntfs3" | sudo tee /etc/modprobe.d/blacklist-ntfs3.conf

# Verify module is not loaded
lsmod | grep ntfs3

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.02%

  • 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-416
  • Technical References
  • SUSE Bug Report #1208697

  • Linux Kernel Commit #887bfc546097

  • Linux Kernel Mailing List Post

  • NetApp Security Advisory NTAP-20230316-0010
  • Related CVEs
  • CVE-2026-31745: Linux Kernel Use-After-Free Vulnerability

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

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

  • CVE-2026-43056: Linux Kernel Use-After-Free 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