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-2026-46062

CVE-2026-46062: Linux Kernel NTFS3 Integer Overflow Flaw

CVE-2026-46062 is an integer overflow vulnerability in the Linux kernel's NTFS3 filesystem that allows boundary checks to be bypassed. This article covers the technical details, affected versions, impact, and mitigation.

Published: May 28, 2026

CVE-2026-46062 Overview

CVE-2026-46062 is an integer overflow vulnerability in the Linux kernel's ntfs3 filesystem driver. The flaw resides in the run_unpack() function, where the volume boundary check lcn + len > sbi->used.bitmap.nbits uses unchecked addition. Large attacker-controlled values for lcn and len can wrap around, bypassing the boundary validation. The issue was identified through fuzzing with a source-patched harness using LibAFL and QEMU. The fix replaces the raw addition with check_add_overflow(), mirroring the safeguards already added by commit 3ac37e100385 for the adjacent prev_lcn + dlcn and vcn64 + len checks.

Critical Impact

An integer overflow in run_unpack() allows a crafted NTFS volume to bypass boundary validation, potentially leading to out-of-bounds access in kernel context.

Affected Products

  • Linux kernel (ntfs3 filesystem driver)
  • Distributions shipping vulnerable Linux kernel versions with ntfs3 enabled
  • Systems mounting untrusted NTFS volumes

Discovery Timeline

  • 2026-05-27 - CVE-2026-46062 published to NVD
  • 2026-05-27 - Last updated in NVD database

Technical Details for CVE-2026-46062

Vulnerability Analysis

The vulnerability is an integer overflow in the ntfs3 filesystem driver's run_unpack() function. This function decodes NTFS run lists, which describe the mapping between virtual cluster numbers (VCN) and logical cluster numbers (LCN) on disk. As part of validation, the code verifies that an LCN plus its run length stays within the volume bitmap bounds. The original check used plain integer addition without overflow protection. When lcn + len wraps past the maximum representable value, the comparison evaluates as if the range is valid, even though the actual run extends far beyond the volume. The kernel then proceeds to operate on out-of-bounds cluster ranges.

Root Cause

The root cause is a missing overflow check in arithmetic on attacker-controlled 64-bit values. Commit 3ac37e100385 previously hardened the adjacent prev_lcn + dlcn and vcn64 + len checks using check_add_overflow(), but the lcn + len > sbi->used.bitmap.nbits comparison was overlooked. The fix introduced in commits 60dab3e, 6175d09, 984a415, a954061, and f1af27c brings this remaining check in line with the rest of the function by using check_add_overflow() to reject malformed run lists before the comparison.

Attack Vector

Exploitation requires the kernel to parse a maliciously crafted NTFS volume. A local user able to mount untrusted NTFS images, or a system that auto-mounts removable media, exposes the vulnerable code path. The attacker forges run list entries with lcn and len values whose sum wraps the integer range, defeating the boundary check. Once accepted, the corrupted run list drives downstream code into out-of-bounds memory access in kernel space. The vulnerability was discovered through coverage-guided fuzzing using LibAFL combined with QEMU and a source-patched harness targeting the ntfs3 parser.

No public proof-of-concept code has been released. Technical details are available in the upstream kernel commits referenced in the Linux kernel stable tree.

Detection Methods for CVE-2026-46062

Indicators of Compromise

  • Kernel oops, panic, or KASAN reports referencing run_unpack, ntfs3, or the ntfs3 cluster bitmap routines
  • Unexpected mount failures or filesystem corruption messages from ntfs3 in dmesg
  • Mount operations against NTFS images originating from untrusted sources, removable media, or user-supplied loop devices

Detection Strategies

  • Audit kernel logs for crashes or warnings emitted by the ntfs3 driver during mount and run list parsing
  • Inventory hosts running kernel builds with CONFIG_NTFS3_FS=y to identify the exposed attack surface
  • Monitor mount syscalls referencing ntfs3 filesystems, especially those initiated by non-root users or automounters

Monitoring Recommendations

  • Forward kernel ring buffer events to a centralized logging or SIEM platform and alert on ntfs3 BUG, WARN, or KASAN entries
  • Track package and kernel versions across the fleet to confirm that patched kernels are deployed
  • Alert on attachment of removable storage on production hosts where NTFS mounting is not an expected workflow

How to Mitigate CVE-2026-46062

Immediate Actions Required

  • Apply the upstream Linux kernel patches referenced in commits 60dab3e, 6175d09, 984a415, a954061, and f1af27c once shipped by your distribution
  • Restrict mounting of NTFS volumes to trusted administrators and disable automatic mounting of removable media on servers
  • Audit which hosts have the ntfs3 driver loaded and whether it is required for the workload

Patch Information

The fix replaces the unchecked lcn + len > sbi->used.bitmap.nbits comparison in run_unpack() with check_add_overflow(), matching the protection already applied to neighboring checks by commit 3ac37e100385. Patched kernels are available through the stable tree commits 60dab3e, 6175d09, 984a415, a954061, and f1af27c.

Workarounds

  • Blacklist the ntfs3 kernel module on systems that do not need NTFS read/write support
  • Disable user-initiated mounting by removing user and users options from /etc/fstab entries and tightening udev/polkit rules for removable media
  • Where NTFS access is still required, use a userspace driver in a sandboxed context instead of the in-kernel ntfs3 driver until patches are applied

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

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

  • Kernel Git Commit 6175d09

  • Kernel Git Commit 984a415

  • Kernel Git Commit a954061

  • Kernel Git Commit f1af27c
  • Related CVEs
  • CVE-2026-46265: Linux Kernel RDMA WQ_MEM_RECLAIM Warning

  • CVE-2026-46257: Linux Kernel SP804 Timer Oops Vulnerability

  • CVE-2026-46255: Linux Kernel EDMA Clock Disable Bug

  • CVE-2026-46239: Linux Kernel OV5647 PM Refcount Leak
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