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

CVE-2025-71070: Linux Kernel Privilege Escalation Flaw

CVE-2025-71070 is a privilege escalation vulnerability in the Linux kernel affecting the ublk subsystem. A reference count leak allows unauthorized operations on completed requests. This article covers technical details, impact, and fixes.

Updated: January 22, 2026

CVE-2025-71070 Overview

A reference count leak vulnerability has been identified in the Linux kernel's ublk (userspace block device) subsystem. When a ublk server process releases a ublk character device file, any requests that were dispatched to the ublk server but not yet completed retain an incorrect reference count value of UBLK_REFCOUNT_INIT. This reference count leak incorrectly allows user copy and zero copy operations on completed ublk requests, potentially leading to memory safety issues and system instability.

Critical Impact

The leaked reference count enables unauthorized user copy and zero copy operations on completed ublk requests, while also triggering WARN_ON_ONCE(refcount_read(&io->ref)) warnings in ublk_queue_reinit() and ublk_deinit_queue() functions.

Affected Products

  • Linux Kernel (ublk subsystem)
  • Systems using UBLK_F_USER_COPY reference-counted data copy mode
  • Systems using UBLK_F_SUPPORT_ZERO_COPY or UBLK_F_AUTO_BUF_REG flags

Discovery Timeline

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

Technical Details for CVE-2025-71070

Vulnerability Analysis

This vulnerability is a reference count leak in the Linux kernel's ublk driver, which manages userspace block devices. The issue was introduced by commit e63d2228ef83 ("ublk: simplify aborting ublk request"), which optimized the __ublk_fail_req() function to call __ublk_complete_rq() directly without decrementing the request reference count.

Before this optimization, __ublk_fail_req() would properly decrement the reference count before completing the failed request. The change inadvertently created a code path where reference counts are not properly cleaned up when the ublk server process exits while requests are still pending.

While commit c5c5eb24ed61 ("ublk: avoid ublk_io_release() called after ublk char dev is closed") addressed this issue for ublk devices using UBLK_F_SUPPORT_ZERO_COPY or UBLK_F_AUTO_BUF_REG, it did not account for UBLK_F_USER_COPY, another reference-counted data copy mode that is also affected by this vulnerability.

Root Cause

The root cause is an incomplete condition check in the ublk_check_and_reset_active_ref() function. The function fails to include all reference-counted data copy modes when determining whether to reset reference counts for pending requests during ublk server exit. Specifically, the UBLK_F_USER_COPY mode was not included in the conditional check, allowing requests using this mode to retain their reference counts even after the ublk server process has terminated.

Attack Vector

The vulnerability can be triggered when a ublk server process unexpectedly exits or releases the ublk character device file while I/O requests are still in flight. The leaked reference count allows continued user copy and zero copy operations on memory regions associated with already-completed requests, potentially leading to use-after-free conditions or memory corruption. This is a local attack vector requiring access to the ublk subsystem.

Detection Methods for CVE-2025-71070

Indicators of Compromise

  • Kernel warning messages containing WARN_ON_ONCE(refcount_read(&io->ref)) in ublk_queue_reinit() or ublk_deinit_queue() functions
  • Unexpected ublk server process terminations followed by system instability
  • Memory corruption indicators in systems actively using ublk userspace block devices
  • Kernel log entries showing reference count warnings in the ublk subsystem

Detection Strategies

  • Monitor kernel logs for WARN_ON_ONCE warnings related to ublk reference counts
  • Implement alerting for unexpected ublk server process terminations
  • Use kernel debugging tools to track reference count anomalies in the ublk subsystem
  • Deploy runtime memory corruption detection tools on systems using ublk devices

Monitoring Recommendations

  • Enable kernel logging with appropriate verbosity to capture ublk subsystem warnings
  • Monitor for abnormal ublk server process lifecycle events
  • Track kernel memory allocation patterns on systems using userspace block devices
  • Implement system health monitoring for unexpected kernel warnings or crashes

How to Mitigate CVE-2025-71070

Immediate Actions Required

  • Update the Linux kernel to a patched version containing the fix
  • Review systems using ublk with UBLK_F_USER_COPY flag for potential impact
  • Ensure ublk server processes are properly managed and monitored for unexpected terminations
  • Apply kernel patches from the official kernel git repositories

Patch Information

The fix corrects the condition in ublk_check_and_reset_active_ref() to include all reference-counted data copy modes, ensuring that any ublk requests still owned by the ublk server when it exits have their reference counts properly reset to 0.

Patches are available at:

  • Kernel Git Commit 13456b4f1033
  • Kernel Git Commit daa24603d9f0

Workarounds

  • Ensure proper ublk server process management to minimize unexpected terminations
  • Consider disabling ublk functionality if not required until patches can be applied
  • Implement process monitoring and automatic restart mechanisms for ublk server processes
  • Avoid using UBLK_F_USER_COPY mode on unpatched systems if alternative configurations are available
bash
# Check for kernel warning messages related to ublk reference counts
dmesg | grep -i "ublk" | grep -i "refcount\|WARN"

# Monitor ublk server process status
systemctl status ublk-server 2>/dev/null || ps aux | grep ublk

# Verify kernel version for patch status
uname -r

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit Change

  • Kernel Git Commit Change
  • Related CVEs
  • CVE-2026-31430: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-31443: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-31463: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-31459: Linux Kernel Privilege Escalation Flaw
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