Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-2025-68781

CVE-2025-68781: Linux Kernel Use-After-Free Vulnerability

CVE-2025-68781 is a use-after-free vulnerability in the Linux kernel USB PHY driver that occurs during device removal when delayed work accesses freed memory. This post covers technical details, affected systems, and fixes.

Updated: January 22, 2026

CVE-2025-68781 Overview

A use-after-free vulnerability has been identified in the Linux kernel's FSL-USB PHY driver (fsl-usb). The vulnerability exists in the handling of delayed work items during device removal, where a race condition can occur between the device detachment process and pending delayed work execution.

The delayed work item otg_event is initialized in fsl_otg_conf() and can be scheduled under two conditions: when a host controller binds to the OTG controller, or when the USB ID pin state changes during cable insertion/removal events. When the device is removed via fsl_otg_remove(), the fsl_otg instance may be freed while the delayed work is still pending or actively executing, leading to memory corruption when the work function fsl_otg_event() attempts to access freed memory.

Critical Impact

Use-after-free condition in the Linux kernel USB subsystem may lead to kernel memory corruption, system instability, or potential privilege escalation on systems using FSL-USB OTG controllers.

Affected Products

  • Linux kernel with FSL-USB PHY driver (drivers/usb/phy/fsl-usb)
  • Systems using Freescale/NXP USB OTG controllers
  • Embedded systems and devices with FSL USB PHY support

Discovery Timeline

  • 2026-01-13 - CVE CVE-2025-68781 published to NVD
  • 2026-01-13 - Last updated in NVD database

Technical Details for CVE-2025-68781

Vulnerability Analysis

This vulnerability is a classic use-after-free condition caused by improper synchronization between device teardown and asynchronous work execution. The FSL-USB OTG driver uses delayed work queues to handle OTG events asynchronously, but the original implementation failed to ensure these work items were properly canceled before freeing the associated data structures.

The memory corruption occurs because the fsl_otg_event() function uses container_of() to derive a pointer to the parent fsl_otg structure from the work item. When fsl_otg_remove() frees the fsl_otg_dev structure while the work function is still pending or executing, subsequent access to the structure results in dereferencing freed memory.

Root Cause

The root cause is a missing synchronization mechanism in the fsl_otg_remove() function. The original code freed the fsl_otg structure without first ensuring that all pending delayed work items had completed. This creates a Time-of-Check Time-of-Use (TOCTOU) race condition where the work function assumes the parent structure is valid, but it may have been deallocated by another thread.

The race condition window exists between the time the delayed work is scheduled and when it actually executes. During device removal, this window allows the detach thread to free memory that the work function still references.

Attack Vector

The vulnerability can be triggered through device removal operations on systems with FSL-USB OTG hardware. The race condition manifests during the following scenario:

  1. A delayed work item (otg_event) is scheduled due to cable insertion/removal or host controller binding
  2. Before the work completes, the device is removed (e.g., via unbind, module unload, or hardware removal)
  3. The fsl_otg_remove() function frees the fsl_otg_dev structure
  4. The pending work function fsl_otg_event() executes and attempts to access the freed memory via container_of()

The fix introduces a call to disable_delayed_work_sync() before deallocating the structure, ensuring proper cancellation and completion of any pending work items.

Detection Methods for CVE-2025-68781

Indicators of Compromise

  • Kernel panic or oops messages referencing fsl_otg_event or fsl_otg_remove functions
  • Memory corruption warnings in kernel logs related to USB PHY operations
  • Unexpected system crashes during USB cable insertion/removal events
  • KASAN (Kernel Address Sanitizer) reports indicating use-after-free in the fsl-usb driver

Detection Strategies

  • Monitor kernel logs for memory corruption warnings in USB subsystem components
  • Enable KASAN in development/testing environments to detect use-after-free conditions
  • Implement runtime memory debugging tools to catch invalid memory accesses
  • Track kernel module loading/unloading events for the fsl-usb driver

Monitoring Recommendations

  • Configure syslog monitoring for kernel oops and panic messages
  • Deploy endpoint detection solutions capable of monitoring kernel-level anomalies
  • Enable kernel crash dump collection for forensic analysis
  • Monitor for unusual patterns in USB device enumeration and removal events

How to Mitigate CVE-2025-68781

Immediate Actions Required

  • Update to a patched Linux kernel version containing the fix
  • Review systems using FSL-USB OTG hardware and prioritize patching
  • Consider disabling the fsl-usb module on non-essential systems until patching is complete
  • Monitor affected systems for signs of kernel instability or crashes

Patch Information

The vulnerability has been resolved by adding a call to disable_delayed_work_sync() in the fsl_otg_remove() function before deallocating the fsl_otg structure. This ensures that any pending or executing delayed work is properly canceled and completed prior to memory deallocation.

Official kernel patches are available through the following commits:

  • Kernel Git Commit 2e7c47e
  • Kernel Git Commit 319f7a8
  • Kernel Git Commit 41ca62e
  • Kernel Git Commit 4476c73
  • Kernel Git Commit 69f9a07

Workarounds

  • Blacklist the fsl-usb kernel module if FSL-USB OTG functionality is not required
  • Avoid dynamic USB cable insertion/removal on affected systems until patched
  • Implement kernel module unload restrictions to prevent race condition triggers
  • Use kernel live patching mechanisms where available to apply the fix without system reboot
bash
# Configuration example
# Blacklist the fsl-usb module if not required
echo "blacklist phy-fsl-usb" >> /etc/modprobe.d/blacklist-fsl-usb.conf

# Prevent module unloading to reduce race condition window
echo "options phy_fsl_usb disable_unload=1" >> /etc/modprobe.d/fsl-usb.conf

# Verify current kernel version and check for patches
uname -r

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

  • SeverityNONE

  • CVSS ScoreN/A

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit 2e7c47e

  • Kernel Git Commit 319f7a8

  • Kernel Git Commit 41ca62e

  • Kernel Git Commit 4476c73

  • Kernel Git Commit 69f9a07
  • Related CVEs
  • CVE-2026-31475: Linux Kernel Use-After-Free Vulnerability

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

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

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