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

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

CVE-2023-37454 is a use-after-free vulnerability in the Linux Kernel's UDF filesystem that allows crafted images to trigger memory corruption. This article covers the technical details, affected versions, and mitigation.

Published: February 4, 2026

CVE-2023-37454 Overview

A use-after-free write vulnerability has been identified in the Linux kernel through version 6.4.2. The flaw exists in the UDF (Universal Disk Format) filesystem implementation, specifically within the udf_put_super and udf_close_lvid functions located in fs/udf/super.c. When a specially crafted UDF filesystem image is processed, it can trigger a use-after-free condition that results in a write operation to freed memory.

Critical Impact

Local attackers with low privileges can craft malicious UDF filesystem images to trigger a use-after-free condition, potentially causing system crashes and denial of service on affected Linux systems.

Affected Products

  • Linux Kernel through version 6.4.2
  • All Linux distributions running vulnerable kernel versions
  • Systems that process untrusted UDF filesystem images

Discovery Timeline

  • 2023-07-06 - CVE-2023-37454 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2023-37454

Vulnerability Analysis

This use-after-free vulnerability (CWE-416) occurs during the cleanup operations of the UDF filesystem driver. When unmounting a UDF filesystem or closing a logical volume, the kernel executes udf_put_super and udf_close_lvid functions. Under certain conditions triggered by a maliciously crafted UDF image, memory that has already been freed is subsequently written to, leading to memory corruption.

The vulnerability was identified through automated fuzzing using the Syzkaller kernel fuzzer, which detected the improper memory access patterns. Multiple related bug reports were generated, indicating the issue manifested across different code paths within the UDF subsystem.

Note: SUSE has documented a different perspective on this vulnerability in their bug tracking system, suggesting some disagreement about the severity or exploitability of this issue.

Root Cause

The root cause lies in improper memory lifecycle management within the UDF filesystem superblock handling code. The udf_put_super function, which is responsible for releasing resources when a UDF filesystem is unmounted, and the udf_close_lvid function, which handles logical volume identifier cleanup, contain a race condition or ordering issue that allows memory to be accessed after it has been deallocated.

This type of vulnerability typically occurs when:

  • Memory is freed prematurely while still referenced
  • Callback functions access stale pointers
  • Resource cleanup ordering is incorrect
  • Proper locking mechanisms are not implemented

Attack Vector

Exploitation requires local access to the target system with the ability to mount filesystem images. An attacker would need to:

  1. Create a maliciously crafted UDF filesystem image with specific structural elements designed to trigger the vulnerable code path
  2. Cause the system to mount the crafted image (requires appropriate permissions)
  3. Trigger the unmount or cleanup operation to activate the use-after-free condition

The attack is limited to local exploitation since it requires mounting a filesystem, which typically requires elevated privileges or access to removable media automounting features. The primary impact is denial of service through kernel crash, though memory corruption vulnerabilities can sometimes be escalated to achieve code execution.

The vulnerability was discovered and documented through multiple Syzkaller Bug Report #26873 instances, with additional reports available at Syzkaller Bug Report #60864 and Syzkaller Bug Report #61564.

Detection Methods for CVE-2023-37454

Indicators of Compromise

  • Kernel panic or oops messages referencing udf_put_super or udf_close_lvid functions
  • System crashes occurring during UDF filesystem unmount operations
  • KASAN (Kernel Address Sanitizer) reports indicating use-after-free in fs/udf/super.c
  • Unexpected system reboots when processing UDF optical media or disk images

Detection Strategies

  • Enable KASAN in development or testing environments to detect memory access violations in the UDF subsystem
  • Monitor kernel logs for oops/panic messages containing references to fs/udf/super.c or related UDF functions
  • Deploy endpoint detection solutions capable of monitoring for kernel exploitation attempts
  • Use SentinelOne's behavioral AI to detect anomalous filesystem operations preceding system instability

Monitoring Recommendations

  • Configure syslog forwarding to capture kernel messages for centralized analysis
  • Implement alerting on kernel panic events, particularly those involving filesystem code paths
  • Monitor for unusual UDF filesystem mount activities, especially from untrusted sources
  • Review automount configurations to prevent automatic mounting of untrusted removable media

How to Mitigate CVE-2023-37454

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the fix (commit 6f861765464f43a71462d52026fbddfc858239a5)
  • Disable UDF filesystem support if not required by adding blacklist udf to /etc/modprobe.d/blacklist.conf
  • Restrict mounting privileges to trusted administrators only
  • Disable automounting of removable media on security-sensitive systems

Patch Information

A fix has been committed to the upstream Linux kernel. The patch is available in the Linux Kernel Commit 6f86176. Users should update to kernel versions that include this commit, or apply the patch manually if running custom kernel builds.

For distribution-specific guidance, consult your Linux distribution's security advisories. SUSE users can reference the SUSE Bug Report CVE-2023-37454 for additional context and their specific assessment of this issue.

Workarounds

  • Blacklist the UDF kernel module to prevent loading: echo "blacklist udf" >> /etc/modprobe.d/blacklist-udf.conf
  • Remove the UDF module if currently loaded: modprobe -r udf
  • Configure system policies to prevent mounting of untrusted filesystem images
  • Implement mandatory access control (SELinux/AppArmor) policies to restrict filesystem mounting operations
bash
# Configuration example - Disable UDF filesystem support
# Add UDF module to blacklist
echo "blacklist udf" | sudo tee /etc/modprobe.d/blacklist-udf.conf

# Remove module if currently loaded
sudo modprobe -r udf

# Prevent manual loading by alias
echo "install udf /bin/false" | sudo tee -a /etc/modprobe.d/blacklist-udf.conf

# Update initramfs to apply changes at boot
sudo update-initramfs -u

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

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-416
  • Technical References
  • SUSE Bug Report CVE-2023-37454

  • Linux Kernel Commit 6f86176

  • Kernel Lore Discussion Thread

  • Syzkaller Bug Report #26873

  • Syzkaller Bug Report #60864

  • Syzkaller Bug Report #61564
  • Related CVEs
  • CVE-2026-23462: Linux Kernel Use-After-Free Vulnerability

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

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

  • CVE-2026-23456: 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