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-2025-71125

CVE-2025-71125: Linux Kernel Tracing Perf Event Flaw

CVE-2025-71125 is a tracing vulnerability in the Linux kernel affecting synthetic event registration with perf. This flaw causes kernel warnings when registering unsupported perf events. Learn about technical details.

Published: January 23, 2026

CVE-2025-71125 Overview

CVE-2025-71125 is a Null Pointer Dereference vulnerability in the Linux kernel's tracing subsystem. The vulnerability occurs when attempting to register perf events for synthetic events, which currently lack a proper registration function. This results in the tracepoint register functions being called with a NULL function pointer, triggering a kernel warning and potential system instability.

Critical Impact

Local users with access to the perf subsystem can trigger kernel warnings and potential denial of service conditions by attempting to register perf events against synthetic trace events.

Affected Products

  • Linux Kernel (tracing subsystem)
  • Systems using perf with synthetic events functionality
  • Linux distributions running vulnerable kernel versions

Discovery Timeline

  • January 14, 2026 - CVE-2025-71125 published to NVD
  • January 19, 2026 - Last updated in NVD database

Technical Details for CVE-2025-71125

Vulnerability Analysis

The vulnerability exists in the Linux kernel's tracing subsystem, specifically in how synthetic events interact with the perf event registration mechanism. Synthetic events are a feature that allows users to create custom trace events by combining data from other events. However, the synthetic event implementation did not include proper support for perf event registration.

When a user attempts to register a perf event against a synthetic event (such as synthetic:futex_wait), the kernel's synth_event_reg() function is called, which in turn calls tracepoint_probe_register(). Since synthetic events lack the necessary callback function for perf registration, this results in a NULL function pointer being passed to tracepoint_add_func(), triggering a kernel warning at kernel/tracepoint.c:175.

The call trace reveals the execution path: perf_event_open syscall → perf_event_alloc() → perf_try_init_event() → perf_tp_event_init() → perf_trace_init() → perf_trace_event_init() → synth_event_reg() → tracepoint_probe_register() → tracepoint_add_func().

Root Cause

The root cause is a missing implementation for perf event registration in the synthetic events subsystem. The synth_event_reg() function attempts to register a tracepoint probe without providing the required callback function pointer, resulting in NULL being passed where a valid function pointer is expected. The tracepoint infrastructure rightfully warns when attempting to add a function with a NULL pointer.

Attack Vector

The attack vector requires local access to a system with the perf subsystem enabled. An attacker or unprivileged user with perf access can trigger this vulnerability by attempting to record perf events for synthetic trace events using commands such as:

bash
perf record -e synthetic:futex_wait

This command causes the kernel to attempt registration of a perf event against the synthetic event futex_wait, triggering the NULL pointer dereference in the tracepoint registration code. While this primarily results in a kernel warning rather than a full crash, repeated exploitation could impact system stability and fill kernel logs.

Detection Methods for CVE-2025-71125

Indicators of Compromise

  • Kernel warnings in dmesg containing WARNING: kernel/tracepoint.c:175 at tracepoint_add_func
  • Log entries showing perf commands failing with error code 19 (No such device) for synthetic events
  • Unusual perf event registration attempts targeting synthetic event types

Detection Strategies

  • Monitor kernel logs (dmesg) for warnings originating from tracepoint_add_func() in kernel/tracepoint.c
  • Implement auditd rules to track perf_event_open syscalls with synthetic event parameters
  • Deploy host-based monitoring for repeated perf command invocations targeting synthetic events

Monitoring Recommendations

  • Enable kernel warning logging and forward to centralized SIEM systems for correlation
  • Set up alerts for unusual patterns of kernel tracing subsystem warnings
  • Monitor for users repeatedly attempting to access synthetic events via the perf interface

How to Mitigate CVE-2025-71125

Immediate Actions Required

  • Update to a patched Linux kernel version that includes the fix
  • Restrict access to the perf subsystem using kernel.perf_event_paranoid sysctl settings
  • Review and limit user permissions for kernel tracing functionality

Patch Information

The fix modifies the kernel to return -ENODEV instead of proceeding with the NULL function pointer registration. This prevents the kernel warning and provides a clean error message to users attempting to use synthetic events with perf. Multiple kernel commits have been released to address this issue across different kernel branches:

  • Linux Kernel Commit 3437c77
  • Linux Kernel Commit 65b1971
  • Linux Kernel Commit 6819bc6
  • Linux Kernel Commit 6d15f08
  • Linux Kernel Commit 6df47e5
  • Linux Kernel Commit ef7f38d
  • Linux Kernel Commit f730569

Workarounds

  • Increase the kernel.perf_event_paranoid sysctl value to restrict perf access to privileged users only
  • Disable synthetic events if not required in your environment
  • Apply SELinux or AppArmor policies to restrict access to the perf subsystem
bash
# Restrict perf access to root only
sysctl -w kernel.perf_event_paranoid=3

# Make the setting persistent
echo "kernel.perf_event_paranoid = 3" >> /etc/sysctl.conf

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.03%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Linux Kernel Commit 3437c77

  • Linux Kernel Commit 65b1971

  • Linux Kernel Commit 6819bc6

  • Linux Kernel Commit 6d15f08

  • Linux Kernel Commit 6df47e5

  • Linux Kernel Commit ef7f38d

  • Linux Kernel Commit f730569
  • Related CVEs
  • CVE-2026-31421: Linux Kernel cls_fw NULL Pointer Vulnerability

  • CVE-2026-31416: Linux Kernel Netfilter Header Vulnerability

  • CVE-2026-31417: Linux Kernel X.25 Overflow Vulnerability

  • CVE-2026-23457: Linux Kernel Integer Truncation 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