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
    • 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-2026-31528

CVE-2026-31528: Linux Kernel Use-After-Free Vulnerability

CVE-2026-31528 is a use-after-free flaw in the Linux kernel's perf subsystem that causes out-of-bound memory access during event group handling. This article covers the technical details, affected versions, and mitigation.

Published: April 23, 2026

CVE-2026-31528 Overview

CVE-2026-31528 is a vulnerability in the Linux kernel's performance monitoring (perf) subsystem that results in out-of-bounds memory access. The issue occurs in the x86_pmu_del() function when group_sched_in() fails and attempts to roll back operations. The root cause stems from incorrect PMU (Performance Monitoring Unit) context handling, where the wrong PMU's transaction handlers are used when a group leader is a software event.

Critical Impact

Local attackers with access to the perf subsystem could potentially trigger out-of-bounds memory access, leading to system instability, information disclosure, or privilege escalation in affected Linux kernel versions.

Affected Products

  • Linux Kernel (versions with vulnerable perf subsystem implementation)
  • Systems using x86 PMU functionality
  • Environments utilizing perf event groups with mixed software/hardware events

Discovery Timeline

  • 2026-04-22 - CVE CVE-2026-31528 published to NVD
  • 2026-04-23 - Last updated in NVD database

Technical Details for CVE-2026-31528

Vulnerability Analysis

The vulnerability exists within the Linux kernel's perf subsystem, specifically in how PMU context is handled for event groups. The issue manifests when group_sched_in() fails and needs to perform a rollback operation. During this rollback, the x86_pmu_del() function performs an out-of-bounds memory access due to incorrect PMU context references.

The problem arises because when a group leader is a software event, the transaction handlers from the wrong PMU are utilized. While the move_group case in perf_event_open() and group_sched_in() correctly use pmu_ctx->pmu, the inherit code path uses event->pmu to clone events. This effectively undoes the move_group case for all inherited contexts, causing the mismatch that leads to the out-of-bounds access.

Root Cause

The root cause is inconsistent PMU reference handling across different code paths in the perf subsystem. The inherit functionality uses event->pmu to clone events rather than pmu_ctx->pmu, which creates a discrepancy with other code paths like move_group. This inconsistency means that when events are inherited, they may end up referencing a different PMU context than expected.

Additionally, __perf_event_read() had the same issue for the group case, where it should equally use pmu_ctx->pmu for consistency. The fix ensures all inherited counters end up in the same PMU context by making the inherit code path use pmu_ctx->pmu, aligning it with the behavior of move_group and group_sched_in().

Attack Vector

The attack vector for this vulnerability requires local access to the system with permissions to interact with the perf subsystem. An attacker would need to:

  1. Create a perf event group with a software event as the group leader
  2. Trigger the group_sched_in() function in a way that causes it to fail
  3. Force the rollback path to be executed, which invokes x86_pmu_del() with incorrect PMU context
  4. Exploit the out-of-bounds memory access for information disclosure or code execution

The exploitation requires careful manipulation of perf event groups and timing to trigger the failure condition during group scheduling. See the Linux kernel commit 35f7914 for technical implementation details of the vulnerability and fix.

Detection Methods for CVE-2026-31528

Indicators of Compromise

  • Kernel panic or oops messages referencing x86_pmu_del() or related perf subsystem functions
  • Unexpected memory access violations in kernel logs related to PMU operations
  • Suspicious perf event activity involving mixed software/hardware event groups
  • System instability when using perf monitoring tools or profilers

Detection Strategies

  • Monitor kernel logs for memory access violations in the perf subsystem, particularly in x86_pmu_del(), group_sched_in(), or __perf_event_read() functions
  • Implement kernel tracing to detect anomalous perf event group creation patterns with software event leaders
  • Deploy host-based intrusion detection to monitor for exploitation attempts targeting the perf subsystem
  • Use SentinelOne's kernel monitoring capabilities to detect abnormal memory access patterns in kernel space

Monitoring Recommendations

  • Enable kernel auditing for perf_event_open syscalls to track event group creation
  • Monitor for unusual process behavior following perf event operations that may indicate successful exploitation
  • Implement alerting on kernel memory corruption indicators in system logs
  • Review perf subsystem usage patterns for anomalous activity, especially in multi-user environments

How to Mitigate CVE-2026-31528

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the fix for this vulnerability
  • If immediate patching is not possible, consider restricting access to the perf subsystem using kernel.perf_event_paranoid sysctl
  • Review and limit which users have CAP_SYS_ADMIN or CAP_PERFMON capabilities
  • Monitor systems for signs of exploitation attempts while preparing for patching

Patch Information

The Linux kernel developers have released fixes for this vulnerability across multiple kernel branches. The patches ensure consistent use of pmu_ctx->pmu for event groups in the inherit path and __perf_event_read() function. Apply the appropriate patch for your kernel version:

  • Linux Kernel Commit 35f7914
  • Linux Kernel Commit 3a696e8
  • Linux Kernel Commit 4b9ce67
  • Linux Kernel Commit 4c75944
  • Linux Kernel Commit 656f35b

Workarounds

  • Restrict perf event access by setting kernel.perf_event_paranoid=2 or higher to limit unprivileged access
  • Remove the CAP_PERFMON capability from non-essential users and processes
  • Disable perf event functionality entirely if not required for system operations
  • Implement SELinux or AppArmor policies to restrict access to perf subsystem interfaces
bash
# Configuration example
# Restrict perf_event_open to root only
echo "kernel.perf_event_paranoid=2" >> /etc/sysctl.conf
sysctl -p

# Alternatively, completely disable for non-root users
echo "kernel.perf_event_paranoid=3" >> /etc/sysctl.conf
sysctl -p

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

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Linux Kernel Commit 35f7914

  • Linux Kernel Commit 3a696e8

  • Linux Kernel Commit 4b9ce67

  • Linux Kernel Commit 4c75944

  • Linux Kernel Commit 656f35b
  • Related CVEs
  • CVE-2026-31745: Linux Kernel Use-After-Free Vulnerability

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

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

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