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
    • 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-21726

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

CVE-2025-21726 is a use-after-free flaw in the Linux Kernel's padata reorder_work functionality that could allow memory corruption. This article covers the technical details, affected versions, security impact, and mitigation.

Updated: January 22, 2026

CVE-2025-21726 Overview

CVE-2025-21726 is a Use-After-Free (UAF) vulnerability in the Linux kernel's padata (parallel data processing) subsystem. The vulnerability exists in the reorder_work handling mechanism, where a race condition between crypto request processing and algorithm deletion can lead to accessing freed memory. This memory corruption issue could allow a local attacker with low privileges to potentially achieve code execution or cause system instability.

Critical Impact

Local attackers can exploit this race condition in the padata subsystem to trigger a use-after-free condition, potentially leading to privilege escalation, arbitrary code execution, or denial of service on affected Linux systems.

Affected Products

  • Linux Kernel (multiple versions)
  • Debian Linux (see LTS announcements)
  • Linux distributions using vulnerable kernel versions

Discovery Timeline

  • 2025-02-27 - CVE-2025-21726 published to NVD
  • 2025-11-03 - Last updated in NVD database

Technical Details for CVE-2025-21726

Vulnerability Analysis

The vulnerability resides in the Linux kernel's padata subsystem, which provides parallel processing capabilities used extensively by the crypto subsystem. The flaw occurs due to improper reference counting of the pd (padata descriptor) structure when reorder_work is queued to the serial_wq work queue.

When processing cryptographic requests in parallel, the padata subsystem uses work queues to serialize the final processing of completed requests. The issue manifests when a new crypto request is added via padata_do_serial() while another request is being processed in padata_reorder(). If crypto_del_alg frees the padata descriptor (pd) between the time reorder_work is queued and when invoke_padata_reorder executes, the worker context accesses freed memory.

The race condition window exists because the previous patch only addressed UAF issues for _do_serial but failed to protect reorder_work from similar memory safety issues.

Root Cause

The root cause is a missing reference count increment on the padata descriptor (pd) before queuing reorder_work to the serial work queue. Without proper reference counting, the padata descriptor can be freed by crypto_del_alg while there are still pending work items that reference it. The fix involves getting a reference to pd before putting reorder_work into serial_wq and releasing that reference only after the work queue finishes processing.

Attack Vector

This vulnerability requires local access to the system with the ability to trigger cryptographic operations. The attack exploits a race condition in the kernel's parallel data processing:

  1. An attacker initiates multiple concurrent crypto requests
  2. During padata_reorder() processing, a new request is added
  3. The reorder_work is queued to handle the new request
  4. Before the worker executes, crypto_del_alg frees the padata descriptor
  5. The worker thread accesses the freed pd structure, causing UAF

The race window as described in the kernel commit shows the interleaving of crypto_request processing with crypto_del_alg that creates this exploitable condition. Successful exploitation requires precise timing but could lead to kernel memory corruption.

Detection Methods for CVE-2025-21726

Indicators of Compromise

  • Kernel panic or oops messages referencing padata_reorder, invoke_padata_reorder, or padata_serial_worker functions
  • KASAN (Kernel Address Sanitizer) reports indicating use-after-free in padata-related functions
  • Unexpected system crashes during heavy cryptographic workloads
  • Memory corruption artifacts in kernel logs related to crypto subsystem operations

Detection Strategies

  • Enable KASAN in debug kernels to detect UAF conditions in padata subsystem
  • Monitor kernel logs for stack traces involving padata_do_serial, padata_reorder, or related functions
  • Deploy kernel live patching monitoring to track padata-related security updates
  • Use SentinelOne's kernel-level behavioral detection to identify abnormal memory access patterns

Monitoring Recommendations

  • Enable kernel audit logging for cryptographic subsystem operations
  • Configure alerting for kernel oops or panic events related to padata or crypto modules
  • Monitor system stability metrics during high crypto workload periods
  • Review kernel version against patched releases listed in vendor advisories

How to Mitigate CVE-2025-21726

Immediate Actions Required

  • Update to a patched Linux kernel version that includes the reference counting fix
  • Review affected systems for kernel versions matching the vulnerable range
  • Prioritize patching on systems with heavy cryptographic workloads or multi-tenant environments
  • Consider temporarily reducing concurrent crypto operations on critical unpatched systems

Patch Information

Multiple commits have been released to stable kernel branches to address this vulnerability. The fix ensures proper reference counting by getting a pd reference before queuing reorder_work and releasing it after completion. Apply the appropriate patch for your kernel version:

  • Linux Kernel Commit 4c6209ef
  • Linux Kernel Commit 6f45ef61
  • Linux Kernel Commit 7000507b
  • Linux Kernel Commit 8ca38d0c
  • Linux Kernel Commit a54091c2
  • Linux Kernel Commit dd7d37cc
  • Linux Kernel Commit f4f1b116

Debian users should refer to the Debian LTS Announcement March 2025 and Debian LTS Announcement May 2025 for distribution-specific guidance.

Workarounds

  • No complete workaround exists; applying the kernel patch is the recommended remediation
  • Reduce exposure by limiting local user access to systems running vulnerable kernels
  • Monitor for exploitation attempts using kernel-level security tools
  • Consider live patching solutions if immediate reboot for kernel updates is not feasible
bash
# Check current kernel version
uname -r

# Verify if padata module is loaded
lsmod | grep padata

# Check for available kernel updates (Debian/Ubuntu)
apt update && apt list --upgradable | grep linux-image

# Check for available kernel updates (RHEL/CentOS)
yum check-update kernel

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

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-416
  • Technical References
  • Debian LTS Announcement March 2025

  • Debian LTS Announcement May 2025
  • Vendor Resources
  • Linux Kernel Commit 4c6209ef

  • Linux Kernel Commit 6f45ef61

  • Linux Kernel Commit 7000507b

  • Linux Kernel Commit 8ca38d0c

  • Linux Kernel Commit a54091c2

  • Linux Kernel Commit dd7d37cc

  • Linux Kernel Commit f4f1b116
  • Related CVEs
  • CVE-2026-23396: Linux Kernel Use-After-Free Vulnerability

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

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

  • CVE-2026-23329: Linux Kernel Use-After-Free Vulnerability
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