A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-68798

CVE-2025-68798: Linux Kernel Race Condition Vulnerability

CVE-2025-68798 is a race condition flaw in the Linux kernel's AMD performance monitoring subsystem that can trigger general protection faults. This article covers the technical details, affected systems, and mitigation.

Updated: January 22, 2026

CVE-2025-68798 Overview

A race condition vulnerability has been discovered in the Linux kernel's AMD performance monitoring subsystem (perf/x86/amd). The vulnerability exists in the amd_pmu_enable_all() function where cpuc->events[idx] can become NULL due to a subtle race condition with the NMI handler's throttle mechanism (NMI->throttle->x86_pmu_stop()). This can lead to a General Protection Fault (GPF) when attempting to enable performance monitoring events on AMD processors.

The issue was identified through Syzkaller fuzzing, which reported a GPF in amd_pmu_enable_all with a null pointer dereference in the address range 0x00000000000001a0-0x00000000000001a7. This vulnerability affects systems running Linux kernels with AMD processors where performance monitoring is active.

Critical Impact

Local attackers may be able to trigger a kernel panic or system crash by exploiting this race condition in the AMD performance monitoring subsystem, potentially causing denial of service on affected systems.

Affected Products

  • Linux Kernel (AMD x86 systems with perf subsystem enabled)
  • Systems running kernel version 6.12.0-rc1 and potentially earlier versions
  • AMD processor-based systems utilizing performance event monitoring

Discovery Timeline

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

Technical Details for CVE-2025-68798

Vulnerability Analysis

This vulnerability is classified as a Race Condition combined with a Null Pointer Dereference. The issue occurs in the AMD-specific performance monitoring unit (PMU) code within the Linux kernel's arch/x86/events/amd/core.c file.

The race condition manifests when the NMI (Non-Maskable Interrupt) handler invokes the throttle mechanism through the call chain NMI->throttle->x86_pmu_stop(). During this process, cpuc->events[idx] can be set to NULL. If amd_pmu_enable_all() attempts to access this event structure without first checking for NULL, a General Protection Fault occurs.

The Syzkaller-generated crash report shows the fault occurring at RIP: 0010:x86_pmu_enable_event with a null pointer dereference when attempting to access memory at offset 0x1a0. The call trace reveals the issue propagates through amd_pmu_enable_all() -> x86_pmu_enable() -> event_sched_out() -> __perf_remove_from_context().

Root Cause

The root cause is a missing NULL check in amd_pmu_enable_all() before attempting to enable performance monitoring events. When the NMI handler's throttle mechanism calls x86_pmu_stop(), it can clear the event pointer at cpuc->events[idx]. If amd_pmu_enable_all() is concurrently executing and attempts to dereference this pointer without validation, a kernel GPF results.

This is an AMD-specific issue because the Intel PMU implementation handles this scenario differently. The KASAN (Kernel Address Sanitizer) output confirms this is a null pointer dereference in the specified memory range.

Attack Vector

The attack vector requires local access to the system with the ability to utilize the performance monitoring subsystem. An attacker with sufficient privileges to create and manipulate perf events could potentially trigger this race condition by:

  1. Creating multiple performance monitoring events
  2. Generating sufficient system load to trigger NMI throttling
  3. Exploiting the timing window where the event pointer becomes NULL but is still accessed

The crash occurs in kernel context during interrupt handling, making it particularly impactful for system stability.

Detection Methods for CVE-2025-68798

Indicators of Compromise

  • Kernel panic or system crash logs containing "general protection fault" with references to amd_pmu_enable_all or x86_pmu_enable_event
  • KASAN reports indicating null pointer dereference in range 0x00000000000001a0-0x00000000000001a7
  • NMI handler warnings showing "perf_event_nmi_handler took too long to run"
  • Kernel oops messages with call traces involving perf/x86/amd code paths
  • System instability or unexpected reboots on AMD-based systems under performance monitoring workloads

Detection Strategies

  • Monitor kernel logs for GPF events with stack traces involving amd_pmu_enable_all(), x86_pmu_enable(), or event_sched_out()
  • Implement kernel crash dump analysis to identify null pointer dereferences in the AMD PMU subsystem
  • Deploy kernel live patching monitoring to detect unpatched systems running vulnerable kernel versions
  • Use perf subsystem monitoring to detect anomalous behavior patterns that may indicate exploitation attempts

Monitoring Recommendations

  • Enable kernel panic logging and crash dump collection for post-incident analysis
  • Monitor for repeated system crashes or instability on AMD-based infrastructure
  • Implement alerting for KASAN or UBSAN reports in kernel logs if running debug-enabled kernels
  • Track NMI handler latency warnings as potential precursors to exploitation

How to Mitigate CVE-2025-68798

Immediate Actions Required

  • Apply the kernel patches provided in the referenced commits to add NULL checking before event enable operations
  • Consider temporarily disabling performance monitoring on critical AMD systems until patches are applied
  • Restrict access to the perf subsystem using kernel.perf_event_paranoid sysctl settings
  • Monitor systems for crash events and implement automatic restart procedures to maintain availability

Patch Information

The Linux kernel maintainers have released patches across multiple stable kernel branches. The fix adds a NULL check for the event pointer in amd_pmu_enable_all() before attempting to enable the event. The following commits contain the fix:

  • Linux Kernel Commit 43c2e5c
  • Linux Kernel Commit 49324a0
  • Linux Kernel Commit 6e41d9e
  • Linux Kernel Commit 866cf36
  • Linux Kernel Commit e1028fb

Organizations should update to kernel versions containing these fixes through their distribution's package management system.

Workarounds

  • Increase kernel.perf_event_paranoid to 2 or higher to restrict perf event access to root only
  • Limit user access to the perf subsystem via capabilities (CAP_PERFMON, CAP_SYS_ADMIN)
  • Consider disabling performance monitoring counters on AMD systems in production environments until patching is complete
  • Implement process sandboxing to limit which applications can create perf events
bash
# Configuration example
# Restrict perf_event access to root only
echo 2 > /proc/sys/kernel/perf_event_paranoid

# Alternative: Set via sysctl for persistence
echo "kernel.perf_event_paranoid = 2" >> /etc/sysctl.d/99-security.conf
sysctl -p /etc/sysctl.d/99-security.conf

# Verify the setting
sysctl kernel.perf_event_paranoid

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

  • Vulnerability Details
  • TypeRace Condition

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Linux Kernel Commit 43c2e5c

  • Linux Kernel Commit 49324a0

  • Linux Kernel Commit 6e41d9e

  • Linux Kernel Commit 866cf36

  • Linux Kernel Commit e1028fb
  • Related CVEs
  • CVE-2026-46327: Linux Kernel Race Condition Vulnerability

  • CVE-2026-46324: Linux Kernel Race Condition Vulnerability

  • CVE-2026-46317: Linux Kernel Race Condition Vulnerability

  • CVE-2026-46316: Linux Kernel Race Condition Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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