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-68793

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

CVE-2025-68793 is a use-after-free vulnerability in the Linux kernel's AMD GPU driver that can cause memory corruption during GPU recovery. This article covers the technical details, affected systems, and patches.

Updated: January 22, 2026

CVE-2025-68793 Overview

CVE-2025-68793 is a Use-After-Free (UAF) vulnerability in the Linux kernel's AMD GPU driver (amdgpu) affecting the GPU recovery mechanism. The flaw exists due to a race condition between the scheduler timeout callback and the TDR (Timeout Detection and Recovery) work queue during GPU recovery operations. When the GPU recovery function calls drm_sched_stop() followed by drm_sched_start(), the TDR queue may free a job structure before the timeout callback completes, resulting in a UAF when accessing the pasid field.

Critical Impact

Local attackers may exploit this race condition to trigger memory corruption, potentially leading to privilege escalation, denial of service, or information disclosure on systems with AMD GPUs.

Affected Products

  • Linux Kernel with AMD GPU driver (amdgpu)
  • Systems utilizing AMD GPU hardware with affected kernel versions
  • Workloads involving GPU recovery operations

Discovery Timeline

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

Technical Details for CVE-2025-68793

Vulnerability Analysis

This vulnerability is classified as a Use-After-Free resulting from a Time-of-Check Time-of-Use (TOCTOU) race condition. The issue occurs within the amdgpu_device_gpu_recover() function in the AMD GPU kernel driver. During GPU recovery, the driver performs a sequence of operations that includes stopping the scheduler via drm_sched_stop() and later restarting it with drm_sched_start().

The restart operation triggers the TDR work queue, which may free job structures asynchronously. If the timeout callback is still executing and attempts to access the job->pasid field after the TDR queue has already freed the job, the driver reads from deallocated memory. This creates a classic UAF condition that can be exploited for memory corruption attacks.

The KASAN (Kernel Address Sanitizer) trace captured in the vulnerability report shows a slab-use-after-free occurring at the amdgpu_device_gpu_recover+0x968/0x990 offset, with a 4-byte read from freed memory at address ffff88b0ce3f794c.

Root Cause

The root cause is improper synchronization between the scheduler timeout callback and the TDR work queue in the GPU recovery path. The pasid (Process Address Space Identifier) field is accessed after the job structure may have been freed by the TDR queue. The fix involves caching the pasid value early in the recovery process before any operations that could result in the job being freed, thereby eliminating the race condition.

Attack Vector

Exploitation of this vulnerability requires local access to a system with an AMD GPU. An attacker could potentially trigger this race condition by:

  1. Initiating workloads that cause GPU hangs requiring recovery
  2. Timing attacks to exploit the window between drm_sched_start() and the timeout callback completion
  3. Manipulating GPU workload scheduling to increase the likelihood of triggering the race condition

The vulnerability is triggered through the drm_sched_job_timedout workqueue handler in the gpu_sched module, which is invoked during GPU timeout recovery scenarios. The race window exists between the job being freed by the TDR queue and the access to job->pasid in the recovery function.

Detection Methods for CVE-2025-68793

Indicators of Compromise

  • KASAN slab-use-after-free reports in kernel logs referencing amdgpu_device_gpu_recover
  • Kernel oops or panic events originating from AMD GPU driver functions
  • Unexpected system crashes during GPU-intensive workloads or recovery operations
  • Workqueue errors related to amdgpu-reset-dev or drm_sched_job_timedout

Detection Strategies

  • Enable KASAN (Kernel Address Sanitizer) in development or testing environments to detect UAF conditions
  • Monitor kernel logs for errors containing amdgpu_device_gpu_recover, amdgpu_job_timedout, or drm_sched_job_timedout
  • Deploy kernel livepatch monitoring to track attempts to exploit race conditions in GPU drivers
  • Implement system audit rules to log GPU recovery events and associated process context

Monitoring Recommendations

  • Configure centralized logging to capture kernel messages with amdgpu or gpu_sched module references
  • Set up alerts for KASAN reports or memory corruption warnings in production systems
  • Monitor for unusual patterns of GPU recovery events that could indicate exploitation attempts
  • Track kernel module loading events for amdgpu and gpu_sched to ensure patched versions are in use

How to Mitigate CVE-2025-68793

Immediate Actions Required

  • Update the Linux kernel to a version containing the fix commit
  • Apply vendor-provided kernel patches for distributions using affected kernel versions
  • Monitor systems for signs of exploitation while patches are being deployed
  • Consider temporarily reducing GPU workloads that may trigger recovery scenarios on critical systems

Patch Information

The vulnerability has been resolved in the Linux kernel through commits that cache the pasid value early in the recovery process to avoid accessing potentially freed job structures. The fix is available in the stable kernel tree:

  • Kernel Git Commit 77f73253015c
  • Kernel Git Commit dac58c012c47

The patch was cherry-picked from commit 20880a3fd5dd7bca1a079534cf6596bda92e107d. System administrators should update to kernel versions containing these commits or apply backported patches from their Linux distribution.

Workarounds

  • No complete workaround is available; applying the kernel patch is the recommended remediation
  • Reducing GPU-intensive workloads may decrease the likelihood of triggering GPU recovery scenarios
  • Monitoring and logging GPU recovery events can help detect potential exploitation attempts
  • Consider implementing additional access controls on systems with AMD GPUs to limit local attack surface

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 Notification

  • Kernel Git Commit Notification
  • 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