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-2026-23066

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

CVE-2026-23066 is a use-after-free flaw in the Linux kernel's rxrpc_recvmsg() function that can lead to memory corruption and refcount underruns. This article covers the technical details, affected versions, and mitigation strategies.

Published: February 6, 2026

CVE-2026-23066 Overview

CVE-2026-23066 is a Use After Free vulnerability in the Linux kernel's rxrpc subsystem. The vulnerability exists in the rxrpc_recvmsg() function, which handles message reception for the AF_RXRPC socket family used primarily by the AFS (Andrew File System) distributed file system.

The flaw occurs when rxrpc_recvmsg() fails because MSG_DONTWAIT was specified but the call at the front of the recvmsg queue already has its mutex locked. In this scenario, the function unconditionally requeues the call regardless of whether the call is already present in the queue. This can happen when MSG_PEEK was also passed (preventing dequeue) or when the I/O thread has already requeued the call.

Critical Impact

The unconditional requeue operation can corrupt the recvmsg queue, leading to Use After Free conditions or reference count underruns, potentially allowing local attackers to cause system instability or gain elevated privileges.

Affected Products

  • Linux kernel (rxrpc subsystem)
  • Systems using AF_RXRPC sockets
  • AFS (Andrew File System) implementations

Discovery Timeline

  • 2026-02-04 - CVE CVE-2026-23066 published to NVD
  • 2026-02-05 - Last updated in NVD database

Technical Details for CVE-2026-23066

Vulnerability Analysis

The rxrpc protocol implementation in the Linux kernel provides a reliable datagram protocol used primarily by the AFS distributed file system. The vulnerability resides in the message reception handling path within rxrpc_recvmsg().

When a user-space application calls recvmsg() on an AF_RXRPC socket with the MSG_DONTWAIT flag, the kernel attempts to receive data without blocking. If the call at the front of the queue has its mutex already locked (by another operation), the function fails and attempts to requeue the call. The critical flaw is that this requeue operation occurs unconditionally, without checking whether the call is already present in the queue.

This creates two problematic scenarios: First, when MSG_PEEK is used in combination with MSG_DONTWAIT, the call is never dequeued but may still be requeued, creating a duplicate entry. Second, if the I/O thread has already requeued the call, a second requeue corrupts the queue structure.

The queue corruption can manifest as Use After Free vulnerabilities when freed memory is still referenced through the corrupted queue, or as reference count underruns when dequeue operations decrement counters for entries that were never properly queued.

Root Cause

The root cause is improper state checking in the rxrpc_recvmsg() error handling path. The function fails to verify queue membership before performing a requeue operation. Additionally, when MSG_PEEK is used and not all data is consumed, the function incorrectly calls rxrpc_notify_socket() even though the call was never dequeued, further contributing to the state corruption.

Attack Vector

A local attacker with the ability to create and manipulate AF_RXRPC sockets could exploit this vulnerability by crafting specific recvmsg() calls with MSG_DONTWAIT and MSG_PEEK flags while racing with other socket operations. By carefully timing these operations to trigger the mutex contention scenario, an attacker could corrupt the queue structure and potentially achieve privilege escalation or cause a denial of service.

The exploitation requires local access and the ability to interact with AF_RXRPC sockets, which limits the attack surface to multi-user systems or scenarios where untrusted code can execute.

Detection Methods for CVE-2026-23066

Indicators of Compromise

  • Kernel log messages indicating rxrpc queue corruption or reference count errors
  • Unexpected kernel crashes or panics in the rxrpc subsystem
  • KASAN (Kernel Address Sanitizer) reports showing use-after-free in rxrpc functions
  • Unusual AFS client behavior or connectivity issues

Detection Strategies

  • Monitor kernel logs for rxrpc-related warnings, errors, or KASAN reports
  • Deploy kernel live patching solutions to detect vulnerable code paths
  • Use system call auditing to monitor recvmsg() operations on AF_RXRPC sockets
  • Implement endpoint detection rules for unusual AF_RXRPC socket activity patterns

Monitoring Recommendations

  • Enable KASAN in development and staging environments to detect memory safety violations
  • Configure kernel auditing to log AF_RXRPC socket operations in sensitive environments
  • Monitor for repeated rxrpc-related kernel warnings that may indicate exploitation attempts
  • Track system stability metrics for AFS-dependent services

How to Mitigate CVE-2026-23066

Immediate Actions Required

  • Update to a patched Linux kernel version containing the fix commits
  • If kernel updates are not immediately possible, consider disabling the rxrpc module if not required
  • Restrict access to AF_RXRPC socket creation using LSM (Linux Security Modules) policies
  • Monitor systems for signs of exploitation while patches are being deployed

Patch Information

The vulnerability has been fixed in the upstream Linux kernel. The fix ensures that calls are only requeued if they are not already on the queue, moving them to the front if already queued. Additionally, the fix properly handles reference counting when a call is not queued and corrects the MSG_PEEK behavior to avoid unnecessary rxrpc_notify_socket() calls.

Patches are available through the following kernel commits:

  • Kernel Git Commit 2c28769a51de
  • Kernel Git Commit 930114425065

Workarounds

  • Unload the rxrpc kernel module if AFS functionality is not required: modprobe -r rxrpc
  • Use SELinux or AppArmor policies to restrict AF_RXRPC socket creation to trusted processes
  • Implement network segmentation to limit exposure of AFS services
  • Consider using container isolation to limit the impact of potential exploitation
bash
# Disable rxrpc module loading (temporary workaround)
echo "install rxrpc /bin/false" >> /etc/modprobe.d/disable-rxrpc.conf
modprobe -r rxrpc

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 Log

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