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

CVE-2026-23473: Linux Kernel Race Condition Vulnerability

CVE-2026-23473 is a race condition flaw in the Linux kernel's io_uring/poll mechanism that causes multishot recv to miss EOF on wakeup races. This article covers the technical details, affected versions, and mitigation.

Published: April 10, 2026

CVE-2026-23473 Overview

A race condition vulnerability exists in the Linux kernel's io_uring subsystem, specifically in the poll mechanism handling multishot receive operations. When a socket send and shutdown() occur back-to-back, both operations fire wake-ups before the receiver's task_work has an opportunity to execute. This race condition can cause multishot recv operations to miss the EOF (End-of-File) signal, potentially leading to a denial of service condition where the operation hangs indefinitely.

Critical Impact

Applications using io_uring's multishot recv functionality may experience indefinite hangs when socket shutdown events are lost due to the poll reference counting race condition.

Affected Products

  • Linux kernel with io_uring subsystem enabled
  • Systems utilizing multishot recv operations via io_uring
  • Network applications leveraging io_uring for asynchronous socket I/O

Discovery Timeline

  • 2026-04-03 - CVE CVE-2026-23473 published to NVD
  • 2026-04-07 - Last updated in NVD database

Technical Details for CVE-2026-23473

Vulnerability Analysis

This vulnerability is a classic race condition in the Linux kernel's io_uring poll subsystem. The flaw manifests when handling concurrent socket events during multishot receive operations.

When a socket performs a send() followed immediately by a shutdown(), both operations generate wake-up events that arrive before the receiver's task_work callback executes. The first wake-up acquires poll ownership by setting poll_refs=1, while the second wake-up increments this counter to 2.

When io_poll_check_events() subsequently runs, it invokes io_poll_issue() which performs a recv operation that reads the data and returns IOU_RETRY. The event loop then drains all accumulated poll references using atomic_sub_return(2), which returns 0 and causes the loop to exit. The critical issue is that only the first event (the data receive) was actually consumed, while the second event (the shutdown notification) is silently lost.

Since shutdown represents a persistent state change that does not generate additional wake-ups, no further notifications will arrive. This causes the multishot recv operation to hang indefinitely, waiting for an event that will never come.

Root Cause

The root cause lies in the poll reference counting mechanism within io_poll_check_events(). The function drains all accumulated poll references in a single operation without ensuring each corresponding event has been properly processed. When multiple wake-ups occur before the handler runs, the loop consumes all references but only processes a single event iteration, causing subsequent events like HUP (hangup) signals to be missed.

Attack Vector

The vulnerability can be triggered through normal socket operations that cause concurrent wake-up events. An attacker with the ability to influence socket timing could potentially exploit this to cause denial of service conditions in applications relying on io_uring multishot recv operations.

The attack scenario involves:

  1. An application using io_uring's multishot recv to monitor a socket
  2. Rapid succession of data transmission followed by socket shutdown
  3. Both events triggering wake-ups before task_work execution
  4. The poll reference draining mechanism missing the shutdown event
  5. The recv operation hanging indefinitely, consuming kernel resources

Detection Methods for CVE-2026-23473

Indicators of Compromise

  • Hung processes with io_uring operations visible in /proc/<pid>/fdinfo
  • Stalled multishot recv operations that fail to terminate after socket closure
  • Increased system resource consumption from processes waiting on io_uring completions
  • Application-level timeouts or unresponsiveness in io_uring-based network services

Detection Strategies

  • Monitor for processes with abnormally long-running io_uring operations using io_uring_show_fdinfo output
  • Implement application-level health checks that verify socket operations complete within expected timeframes
  • Use kernel tracing (ftrace/bpftrace) to monitor io_poll_check_events behavior and poll reference counts
  • Deploy watchdog mechanisms for critical network services using io_uring multishot recv

Monitoring Recommendations

  • Enable kernel auditing for io_uring system calls to track operation patterns
  • Implement alerting for processes exceeding expected socket operation durations
  • Monitor system resource utilization for signs of resource exhaustion from hung operations
  • Review application logs for timeout errors related to socket receive operations

How to Mitigate CVE-2026-23473

Immediate Actions Required

  • Apply the official kernel patches from the stable kernel tree
  • Restart affected services after kernel update to ensure clean io_uring state
  • Consider temporarily switching to non-multishot recv operations for critical applications
  • Implement application-level timeouts as a defensive measure

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability. The fix modifies the poll event handling loop to specifically check for HUP conditions and ensures additional loop iterations occur when more than a single poll activation is pending. This prevents the shutdown event from being silently dropped.

Patches are available through the following kernel commits:

  • Kernel Git Commit 0f4ce79
  • Kernel Git Commit a68ed2d
  • Kernel Git Commit bf33554

Workarounds

  • Avoid using multishot recv operations in io_uring until patched kernel is deployed
  • Implement application-level socket state monitoring with explicit shutdown detection
  • Use traditional poll/epoll mechanisms as a temporary alternative for critical services
  • Deploy socket operation timeouts to prevent indefinite hangs from impacting service availability
bash
# Check current kernel version
uname -r

# Verify io_uring is in use on the system
lsof 2>/dev/null | grep io_uring

# Monitor for hung io_uring operations
cat /proc/$(pgrep -f your_app)/fdinfo/* | grep -A 20 io_uring

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

  • Vulnerability Details
  • TypeRace Condition

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Git Commit a68ed2d

  • Kernel Git Commit bf33554
  • Related CVEs
  • CVE-2026-31740: Linux Kernel Race Condition Vulnerability

  • CVE-2026-31751: Linux Kernel Race Condition Vulnerability

  • CVE-2026-31726: Linux Kernel Race Condition Vulnerability

  • CVE-2026-31700: Linux Kernel Race Condition 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