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

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

CVE-2025-71115 is a use-after-free flaw in the Linux kernel affecting cpu_tasks initialization. This vulnerability causes system crashes when KCOV is enabled. Learn about technical details, affected versions, and fixes.

Published: January 23, 2026

CVE-2025-71115 Overview

A null pointer dereference vulnerability has been identified in the Linux kernel's User Mode Linux (UML) subsystem. The vulnerability exists due to improper initialization timing of the cpu_tasks[] array in the uml_finishsetup() function. When Kernel Code Coverage (KCOV) is enabled, early initialization code can call functions like memparse() which contain coverage annotations. The subsequent checks in check_kcov_mode() crash because the current pointer is NULL, as cpu_tasks[] has not yet been initialized.

Critical Impact

Systems running User Mode Linux with KCOV enabled may experience kernel crashes during initialization due to null pointer dereference when coverage-annotated functions are called before cpu_tasks[] initialization.

Affected Products

  • Linux Kernel (User Mode Linux subsystem)
  • Linux kernel builds with KCOV enabled
  • Linux kernel versions prior to the security patches

Discovery Timeline

  • 2026-01-14 - CVE CVE-2025-71115 published to NVD
  • 2026-01-14 - Last updated in NVD database

Technical Details for CVE-2025-71115

Vulnerability Analysis

This vulnerability stems from a race condition in the kernel initialization sequence specific to User Mode Linux (UML). The cpu_tasks[] array, which tracks CPU task information, was being initialized too late in the boot process within uml_finishsetup(). When the kernel is compiled with KCOV (Kernel Code Coverage) support, various initialization functions contain coverage annotations that trigger calls to check_kcov_mode().

The check_kcov_mode() function relies on the current macro to access the currently running task. However, since cpu_tasks[] hadn't been initialized yet during early boot stages, the current pointer resolves to NULL. Any attempt to dereference this NULL pointer results in a kernel crash, effectively creating a denial of service condition during system initialization.

Root Cause

The root cause is an initialization order dependency issue. The cpu_tasks[] array was dynamically initialized in uml_finishsetup(), which occurs after certain init code paths that may invoke KCOV-annotated functions like memparse(). When these functions execute their coverage instrumentation code, they attempt to access task-related data structures through the current macro, which depends on cpu_tasks[] being properly initialized.

The fix involves changing cpu_tasks[] from dynamic initialization to static initialization, ensuring the array is available from the very beginning of the kernel boot process. This eliminates the window where current could return NULL due to uninitialized task tracking structures.

Attack Vector

The vulnerability is primarily a local denial of service condition that occurs during kernel initialization. The attack vector is limited because:

  1. The crash occurs during early boot with KCOV enabled
  2. KCOV is typically used in development/testing environments for code coverage analysis
  3. An attacker would need local access to configure and boot a vulnerable kernel

The vulnerability does not appear to be directly exploitable for code execution or privilege escalation, but it prevents successful system boot under specific configurations.

Detection Methods for CVE-2025-71115

Indicators of Compromise

  • Kernel panic or crash during early boot initialization
  • Error messages referencing check_kcov_mode() null pointer dereference
  • System logs showing crashes in UML initialization with KCOV enabled
  • Boot failures when running User Mode Linux with coverage instrumentation

Detection Strategies

  • Monitor system boot logs for null pointer dereference panics in UML subsystem
  • Check kernel configuration for KCOV enablement combined with UML usage
  • Review dmesg output for crashes during uml_finishsetup() or related functions
  • Audit kernel build configurations for vulnerable KCOV + UML combinations

Monitoring Recommendations

  • Implement kernel crash dump analysis for systems running UML
  • Configure automated alerts for kernel initialization failures
  • Monitor for repeated boot failures in virtualized or UML environments
  • Deploy kernel log aggregation to detect patterns of initialization crashes

How to Mitigate CVE-2025-71115

Immediate Actions Required

  • Apply the latest Linux kernel patches addressing this vulnerability
  • Temporarily disable KCOV if running User Mode Linux in production environments
  • Update to a patched kernel version containing the static cpu_tasks[] initialization fix
  • Review and update kernel configurations for systems using UML subsystem

Patch Information

The vulnerability has been addressed through patches that statically initialize the cpu_tasks[] array, ensuring it is available from the earliest stages of kernel boot. The fix initializes all entries in the array to support both the immediate crash fix and future SMP work.

Patch commits are available from the Linux kernel git repository:

  • Kernel Git Commit 7b5d441
  • Kernel Git Commit dbbf6d4

Workarounds

  • Disable KCOV in kernel configuration (CONFIG_KCOV=n) as a temporary workaround
  • Avoid using User Mode Linux with KCOV-enabled kernels until patches are applied
  • Use alternative virtualization solutions if UML with code coverage is not essential
  • Consider building kernels without coverage instrumentation for production UML deployments
bash
# Disable KCOV in kernel configuration
make menuconfig
# Navigate to: General setup -> Kernel hacking -> KCOV
# Set CONFIG_KCOV to 'n'

# Alternatively, modify .config directly
sed -i 's/CONFIG_KCOV=y/# CONFIG_KCOV is not set/' .config

# Rebuild kernel
make -j$(nproc)

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

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