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

CVE-2025-24985: Windows 10 1507 Fast FAT Driver RCE Flaw

CVE-2025-24985 is an integer overflow vulnerability in the Windows 10 1507 Fast FAT Driver that enables local code execution. This article covers the technical details, affected system versions, security impact, and mitigation.

Updated: January 22, 2026

CVE-2025-24985 Overview

CVE-2025-24985 is an integer overflow or wraparound vulnerability in the Windows Fast FAT Driver that allows an unauthorized attacker to execute code locally. This vulnerability affects the kernel-level file system driver responsible for handling FAT (File Allocation Table) formatted storage media, making it particularly dangerous as successful exploitation can lead to complete system compromise with elevated privileges.

Critical Impact

This vulnerability is actively exploited in the wild and is listed in the CISA Known Exploited Vulnerabilities (KEV) catalog. Organizations must prioritize patching immediately as attackers can achieve arbitrary code execution through crafted FAT file system images.

Affected Products

  • Microsoft Windows 10 (versions 1507, 1607, 1809, 21H2, 22H2)
  • Microsoft Windows 11 (versions 22H2, 23H2, 24H2)
  • Microsoft Windows Server 2008 SP2, 2008 R2 SP1, 2012, 2012 R2, 2016, 2019, 2022, 2022 23H2, 2025

Discovery Timeline

  • March 11, 2025 - CVE-2025-24985 published to NVD
  • October 27, 2025 - Last updated in NVD database

Technical Details for CVE-2025-24985

Vulnerability Analysis

The vulnerability exists within the Windows Fast FAT Driver (fastfat.sys), a kernel-mode driver responsible for parsing and mounting FAT12, FAT16, and FAT32 file systems. The integer overflow condition occurs when the driver processes specially crafted metadata within a FAT file system image, specifically when calculating memory buffer sizes or array indices during file system mounting operations.

When an integer overflow occurs in a kernel driver, the calculated value wraps around to a smaller-than-expected value. This can result in undersized buffer allocations (CWE-122: Heap-based Buffer Overflow) that are subsequently overwritten with attacker-controlled data, leading to heap corruption in kernel memory space. The associated CWE-190 (Integer Overflow or Wraparound) classification confirms the root cause of this vulnerability.

Root Cause

The root cause is an integer overflow (CWE-190) in the Windows Fast FAT Driver during arithmetic operations on file system metadata fields. When processing FAT volume boot sector parameters or directory entry calculations, the driver performs multiplication or addition operations on user-controlled values without adequate bounds checking. When these operations produce results exceeding the maximum value for the data type, the value wraps around to a small positive integer, leading to a heap-based buffer overflow (CWE-122) when undersized buffers are subsequently populated with file system data.

Attack Vector

The attack vector is local, requiring user interaction to mount a malicious storage device or FAT-formatted image file. An attacker can deliver the malicious FAT file system image through several methods:

  1. Physical media: USB drives, SD cards, or other removable storage formatted with a malicious FAT image
  2. Virtual disk images: VHD, VHDX, or raw disk images containing crafted FAT partitions
  3. Email attachments: Disk image files sent as attachments that users may mount
  4. Downloaded archives: Malicious disk images distributed through file sharing or compromised websites

When a user mounts the malicious file system, the Windows Fast FAT Driver parses the crafted metadata, triggering the integer overflow condition and enabling arbitrary code execution in kernel mode.

Detection Methods for CVE-2025-24985

Indicators of Compromise

  • Unexpected mounting of FAT-formatted volumes from untrusted sources
  • Crash dumps indicating fastfat.sys driver failures or memory corruption
  • Suspicious VHD, VHDX, or raw disk image files appearing on systems
  • Unusual kernel-mode activity following USB device insertion events

Detection Strategies

  • Monitor Windows Event Logs for unexpected removable storage mount events (Event IDs 2003, 2100, 2101 in Microsoft-Windows-Partition/Diagnostic)
  • Deploy endpoint detection rules for suspicious file system image file creation or access patterns
  • Enable kernel debugging and driver verifier to detect heap corruption in fastfat.sys
  • Implement behavioral analysis for privilege escalation attempts following media mount operations

Monitoring Recommendations

  • Enable Windows Defender Exploit Guard Attack Surface Reduction rules for USB device restrictions
  • Configure centralized logging for all removable media mount events across the enterprise
  • Deploy SentinelOne agents with Deep Visibility to track kernel driver activity and file system operations
  • Monitor for anomalous process creation chains originating from file system mount operations

How to Mitigate CVE-2025-24985

Immediate Actions Required

  • Apply the latest Microsoft security updates from the March 2025 Patch Tuesday release immediately
  • Restrict removable media usage through Group Policy until patches are deployed
  • Block mounting of untrusted VHD/VHDX files via Windows Defender Application Control policies
  • Audit systems for any indicators of compromise related to this vulnerability

Patch Information

Microsoft has released security updates to address this vulnerability. Organizations should obtain the appropriate patches from the Microsoft Security Update Guide for CVE-2025-24985. Given that this vulnerability is actively exploited and listed in the CISA Known Exploited Vulnerabilities Catalog, federal agencies and critical infrastructure organizations should follow CISA's binding operational directives for remediation timelines.

Workarounds

  • Disable automatic mounting of removable storage devices via Group Policy (Computer Configuration > Administrative Templates > System > Removable Storage Access)
  • Restrict USB device usage to approved devices only using endpoint protection policies
  • Deploy application control policies to prevent mounting of disk image files from untrusted locations
  • Consider temporarily disabling the FAT file system driver in high-security environments where FAT support is not required
bash
# PowerShell: Disable Removable Storage Access via Registry
Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\RemovableStorageDevices" -Name "Deny_All" -Value 1 -Type DWord

# Verify the setting
Get-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\RemovableStorageDevices" -Name "Deny_All"

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechWindows

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.97%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityHigh
  • CISA KEV Information
  • In CISA KEVYes
  • CWE References
  • CWE-122

  • CWE-190
  • Technical References
  • Vicarius CVE-2025-24985 Analysis

  • CISA Known Exploited Vulnerabilities
  • Vendor Resources
  • Microsoft CVE-2025-24985 Update Guide

  • Vicarius CVE-2025-24985 Mitigation
  • Related CVEs
  • CVE-2026-31995: Openclaw Command Injection Vulnerability

  • CVE-2026-25190: Windows GDI RCE Vulnerability

  • CVE-2026-25166: Windows System Image Manager RCE Flaw

  • CVE-2026-25173: Windows RRAS RCE 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