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

CVE-2023-4692: GNU GRUB2 NTFS RCE Vulnerability

CVE-2023-4692 is an out-of-bounds write RCE vulnerability in GNU GRUB2's NTFS filesystem driver that enables heap corruption and secure boot bypass. This article covers the technical details, impact, and mitigations.

Published: February 11, 2026

CVE-2023-4692 Overview

An out-of-bounds write vulnerability has been identified in GRUB2's NTFS filesystem driver that poses a significant threat to system boot security. This flaw allows an attacker to present a specially crafted NTFS filesystem image, leading to heap metadata corruption within GRUB2. In certain circumstances, this attack can also corrupt UEFI firmware heap metadata, potentially enabling arbitrary code execution and Secure Boot protection bypass.

This vulnerability is particularly concerning because it targets the bootloader—a critical component that executes before the operating system loads. Successful exploitation could allow attackers to establish persistent, pre-OS malware that survives operating system reinstallation and is invisible to traditional security solutions.

Critical Impact

Successful exploitation enables arbitrary code execution during the boot process and bypass of Secure Boot protections, potentially allowing persistent rootkit installation below the OS level.

Affected Products

  • GNU GRUB2 (all versions prior to patch)
  • Red Hat Enterprise Linux 8.0
  • Red Hat Enterprise Linux 9.0

Discovery Timeline

  • October 25, 2023 - CVE-2023-4692 published to NVD
  • November 4, 2025 - Last updated in NVD database

Technical Details for CVE-2023-4692

Vulnerability Analysis

The vulnerability resides in GRUB2's NTFS filesystem driver, which is responsible for parsing and mounting NTFS volumes during the boot process. When processing a maliciously crafted NTFS filesystem image, the driver fails to properly validate boundary conditions, resulting in an out-of-bounds write operation that corrupts GRUB2's heap metadata.

The flaw is classified under CWE-122 (Heap-based Buffer Overflow) and CWE-787 (Out-of-bounds Write), indicating that the vulnerability allows writing data beyond allocated memory boundaries in the heap region. This type of memory corruption is particularly dangerous in bootloader code because:

  1. The bootloader operates with elevated privileges before any OS-level protections are active
  2. Secure Boot trust chain can be compromised at its foundation
  3. UEFI firmware memory corruption can affect system integrity beyond the boot process

Root Cause

The root cause stems from insufficient bounds checking in the NTFS filesystem driver when parsing filesystem structures. The driver processes NTFS metadata structures without adequately validating size and offset fields, allowing an attacker-controlled NTFS image to specify values that cause writes outside the allocated buffer boundaries.

When GRUB2 attempts to read from a malicious NTFS volume (such as one on a USB drive or a partition on the boot disk), the crafted filesystem metadata triggers the out-of-bounds write condition. This corrupts heap management structures, which can be leveraged to achieve controlled memory writes and ultimately arbitrary code execution.

Attack Vector

The attack requires local access to the system, either through physical access to insert malicious bootable media or through prior compromise allowing filesystem manipulation. An attacker must craft a specially malformed NTFS filesystem image containing metadata designed to trigger the out-of-bounds write condition.

The attack scenario typically involves:

  1. Creating a malicious NTFS filesystem image with crafted metadata structures
  2. Presenting this image to the target system during boot (via USB, modified partition, or network boot)
  3. When GRUB2 attempts to parse the NTFS filesystem, heap corruption occurs
  4. The corrupted heap metadata is leveraged to redirect execution flow
  5. Arbitrary code executes in the GRUB2 context, potentially bypassing Secure Boot

The vulnerability mechanism exploits improper validation in the NTFS driver's metadata parsing routines. When processing filesystem structures such as the Master File Table (MFT) or attribute lists, the driver allocates heap buffers based on size values read from the filesystem. Maliciously crafted size or offset values can cause writes to memory locations outside the intended buffer, corrupting adjacent heap metadata and enabling exploitation.

For detailed technical analysis, refer to the DFIR Article on CVE-2023-4692 and CVE-2023-4693 and the GNU GRUB Development Mailing List Post.

Detection Methods for CVE-2023-4692

Indicators of Compromise

  • Unexpected NTFS partitions or filesystem images present on boot media
  • Modified or unsigned GRUB2 bootloader binaries
  • Secure Boot validation failures during system boot
  • Unusual boot behavior or unexpected code execution during the boot process

Detection Strategies

  • Monitor for changes to bootloader files and EFI system partition contents
  • Implement Secure Boot with properly enrolled keys to detect unsigned bootloader modifications
  • Use firmware integrity monitoring tools to detect UEFI heap corruption indicators
  • Deploy endpoint detection capabilities that can inspect pre-boot components

Monitoring Recommendations

  • Enable UEFI Secure Boot logging to capture boot-time verification events
  • Implement file integrity monitoring on /boot and EFI system partition directories
  • Monitor for unauthorized access to bootloader configuration files (grub.cfg)
  • Utilize SentinelOne's firmware and boot protection capabilities for continuous boot process integrity monitoring

How to Mitigate CVE-2023-4692

Immediate Actions Required

  • Update GRUB2 to the latest patched version provided by your distribution
  • Verify Secure Boot is enabled and properly configured on affected systems
  • Audit removable media policies and restrict USB boot capabilities where possible
  • Review and harden physical access controls to prevent malicious boot media insertion

Patch Information

Patches are available from multiple vendors. Red Hat has released security advisories addressing this vulnerability:

  • Red Hat Security Advisory RHSA-2024:2456 for Red Hat Enterprise Linux 9
  • Red Hat Security Advisory RHSA-2024:3184 for Red Hat Enterprise Linux 8

Additional patches are available from:

  • Debian LTS Security Announcement
  • Gentoo GLSA 202311-14
  • Fedora Package Announcements
  • NetApp Security Advisory NTAP-20231208-0002

For additional details, see the Red Hat CVE Details for CVE-2023-4692 and Red Hat Bug Report #2236613.

Workarounds

  • Disable NTFS filesystem support in GRUB2 if not required by removing or blacklisting the ntfs module
  • Restrict boot to trusted devices only through BIOS/UEFI boot order configuration
  • Implement physical security measures to prevent unauthorized boot media insertion
  • Enable Secure Boot with custom enrolled keys to prevent execution of unsigned bootloaders
bash
# Remove NTFS module from GRUB2 if not needed (Red Hat/CentOS/Fedora)
# Edit /etc/default/grub and add:
GRUB_DISABLE_MODULES="ntfs"

# Regenerate GRUB configuration
grub2-mkconfig -o /boot/grub2/grub.cfg

# Verify Secure Boot status
mokutil --sb-state

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechGnu Grub2

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.00%

  • 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-122

  • CWE-787
  • Technical References
  • Red Hat Security Advisory RHSA-2024:2456

  • Red Hat Security Advisory RHSA-2024:3184

  • Red Hat CVE Details for CVE-2023-4692

  • Red Hat Bug Report #2236613

  • DFIR Article on CVE-2023-4692 and CVE-2023-4693

  • GNU GRUB Development Mailing List Post

  • Seclists OSS-Sec Discussion Thread

  • Debian LTS Security Announcement

  • Fedora Package Announcement

  • Fedora Package Announcement

  • Fedora Package Announcement

  • Gentoo GLSA 202311-14

  • NetApp Security Advisory NTAP-20231208-0002
  • Related CVEs
  • CVE-2025-1125: GNU GRUB2 HFS Filesystem RCE Vulnerability

  • CVE-2025-0686: GNU GRUB2 RCE Vulnerability

  • CVE-2025-0685: GNU GRUB2 RCE Vulnerability

  • CVE-2025-0684: GNU GRUB2 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