A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-43174

CVE-2026-43174: Linux Kernel io_uring Error Vulnerability

CVE-2026-43174 is an error handling flaw in the Linux kernel's io_uring/zcrx subsystem that affects resource management. This post explains the technical details, affected versions, security impact, and mitigation steps.

Published: May 7, 2026

CVE-2026-43174 Overview

CVE-2026-43174 is a Linux kernel vulnerability in the io_uring/zcrx (zero-copy receive) subsystem. The flaw affects post-open error handling in the zero-copy receive context. Closing a queue does not guarantee that all associated page pools are terminated immediately. The original code released the zcrx context directly, bypassing the established refcounting mechanism. The fix lets refcounting manage the lifecycle of the context instead of releasing it directly.

Critical Impact

Improper lifecycle management of zcrx contexts during error paths can lead to use-after-free conditions or memory corruption when page pools outlive the parent context.

Affected Products

  • Linux Kernel — versions containing the io_uring/zcrx zero-copy receive subsystem
  • Distributions shipping affected mainline kernel versions prior to the upstream fix
  • Stable kernel branches awaiting backport of the referenced commits

Discovery Timeline

  • 2026-05-06 - CVE-2026-43174 published to NVD
  • 2026-05-06 - Last updated in NVD database

Technical Details for CVE-2026-43174

Vulnerability Analysis

The vulnerability resides in the io_uring zero-copy receive (zcrx) implementation within the Linux kernel. io_uring is a high-performance asynchronous I/O interface, and zcrx provides zero-copy receive paths that map network buffers directly into userspace via page pools.

The defect involves object lifetime management during post-open error handling. When a receive queue is closed, the page pools associated with that queue are not guaranteed to terminate synchronously. Page pools may still hold references to buffers and metadata stored in the zcrx context. Releasing the zcrx context directly — without waiting for all dependent page pools to drop their references — creates a window where stale references to freed memory can be dereferenced.

Root Cause

The root cause is improper object lifecycle management in the error path. The original code performed direct release of the zcrx context rather than allowing the kernel's reference counting mechanism to coordinate teardown. This violates the invariant that an object must outlive all of its referrers.

Attack Vector

Exploitation requires local access with the ability to invoke io_uring system calls and configure zero-copy receive queues. An attacker triggers the post-open error path to force premature release of the zcrx context while page pools still hold references. The full impact, attack complexity, and required privileges have not been scored in the NVD entry. CWE classification is not assigned at the time of publication.

No verified exploit code is publicly available. The vulnerability is described in the upstream kernel commits referenced by the Kernel Git Commit and the follow-up Kernel Git Commit.

Detection Methods for CVE-2026-43174

Indicators of Compromise

  • Kernel oops or panic messages referencing io_uring, zcrx, or page_pool in dmesg or /var/log/kern.log
  • Unexpected process termination of workloads that use io_uring zero-copy receive
  • KASAN (Kernel Address Sanitizer) reports flagging use-after-free in zero-copy receive code paths

Detection Strategies

  • Audit running kernel versions across the fleet and compare against the upstream commit hashes 18afaff077b4 and 5d540e450895
  • Enable kernel runtime checks such as KASAN on test systems to surface lifecycle issues in io_uring/zcrx
  • Monitor auditd for processes invoking io_uring_setup and zero-copy receive registration calls from unprivileged users

Monitoring Recommendations

  • Centralize kernel logs and alert on crashes referencing io_uring or zcrx symbols
  • Track package inventory for kernel updates and validate that affected hosts receive the patched build
  • Correlate workload telemetry with kernel events to detect anomalous teardown behavior of zero-copy receive queues

How to Mitigate CVE-2026-43174

Immediate Actions Required

  • Apply the upstream kernel patches referenced in the kernel.org commits and rebuild or update affected kernels
  • Restrict access to io_uring for untrusted users via kernel.io_uring_disabled sysctl where the workload permits
  • Inventory systems running kernel versions that include io_uring/zcrx and prioritize patching of multi-tenant hosts

Patch Information

The upstream fix replaces direct release of the zcrx context with refcount-driven teardown. Reference the patch at kernel.org commit 18afaff077b4 and the related change at kernel.org commit 5d540e450895. Distribution maintainers will backport these commits to supported stable branches.

Workarounds

  • Disable io_uring system-wide using sysctl -w kernel.io_uring_disabled=2 if no workloads require it
  • Avoid granting unprivileged users the ability to create io_uring instances on shared hosts
  • Refrain from enabling zero-copy receive features in production until the patched kernel is deployed
bash
# Configuration example
# Disable io_uring for unprivileged users until the kernel is patched
sysctl -w kernel.io_uring_disabled=2

# Persist the setting across reboots
echo 'kernel.io_uring_disabled = 2' | sudo tee /etc/sysctl.d/99-io_uring.conf

# Verify current kernel version against patched commits
uname -r

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Git Commit Overview
  • Related CVEs
  • CVE-2026-46239: Linux Kernel OV5647 PM Refcount Leak

  • CVE-2026-46235: Linux Kernel saa7164 Memory Vulnerability

  • CVE-2026-46230: Linux Kernel AMDGPU VCN3 OOB Vulnerability

  • CVE-2026-46224: Linux Kernel DRM/XE Memory Leak Bug
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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