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

CVE-2026-43442: Linux Kernel Privilege Escalation Flaw

CVE-2026-43442 is a privilege escalation vulnerability in the Linux kernel's io_uring subsystem that allows unprivileged users to read memory beyond allocated bounds. This article covers technical details, impact, and mitigations.

Published: May 18, 2026

CVE-2026-43442 Overview

CVE-2026-43442 is a Linux kernel vulnerability in the io_uring subsystem. The flaw involves an incorrect bounds check for 128-byte Submission Queue Entry (SQE) operations when IORING_SETUP_SQE_MIXED is used without IORING_SETUP_NO_SQARRAY. An unprivileged local user can remap a logical SQ position to an arbitrary physical SQE index, causing a 128-byte memcpy in io_uring_cmd_sqe_copy() to read 64 bytes past the end of the SQE array.

Critical Impact

A local unprivileged attacker can trigger an out-of-bounds read in kernel memory, leading to information disclosure or kernel crash conditions affecting system availability.

Affected Products

  • Linux kernel versions implementing IORING_SETUP_SQE_MIXED support in io_uring
  • Distributions shipping affected upstream kernels prior to the fix commits
  • Systems with io_uring enabled for unprivileged users

Discovery Timeline

  • 2026-05-08 - CVE-2026-43442 published to NVD
  • 2026-05-12 - Last updated in NVD database

Technical Details for CVE-2026-43442

Vulnerability Analysis

The vulnerability resides in io_init_req() within the Linux kernel io_uring subsystem. When a userspace application initializes an io_uring instance with IORING_SETUP_SQE_MIXED and the SQ array indirection enabled, the kernel must validate that 128-byte SQE operations do not cross the physical boundary of the SQE buffer.

The pre-patch check !(ctx->cached_sq_head & (ctx->sq_entries - 1)) validates the logical SQ head position. This assumes the logical position equals the physical SQE index, which only holds when IORING_SETUP_NO_SQARRAY is used. With the SQ array present, userspace controls the mapping from logical to physical indices.

A local attacker can set sq_array[N] = sq_entries - 1, directing a 128-byte SQE operation to the final physical slot. The subsequent memcpy in io_uring_cmd_sqe_copy() then reads 64 bytes beyond the allocated SQE array.

Root Cause

The boundary check operates on the logical SQ head index rather than the physical SQE index. This is a classic confusion between an attacker-controlled indirection layer and the underlying memory layout. Because sq_array is mapped to userspace and writable by the ring owner, the kernel cannot trust the logical-to-physical mapping when enforcing safety invariants.

Attack Vector

Exploitation requires local access and the ability to create an io_uring instance. The attacker creates a ring with IORING_SETUP_SQE_MIXED and without IORING_SETUP_NO_SQARRAY, populates sq_array so a 128-byte op maps to the last physical SQE index, then submits the operation. The resulting out-of-bounds read in io_uring_cmd_sqe_copy() exposes adjacent kernel memory to the request handler or destabilizes the kernel. The CVSS vector CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:H reflects local exploitation by a low-privilege user with high confidentiality and availability impact.

No public proof-of-concept code has been released. See the upstream fix commits 1f794f9bed3e and 6f02c6b19603 for the corrected validation logic.

Detection Methods for CVE-2026-43442

Indicators of Compromise

  • Unexpected kernel oops, KASAN reports, or BUG: messages referencing io_uring_cmd_sqe_copy or io_init_req in dmesg
  • Processes creating io_uring instances with IORING_SETUP_SQE_MIXED flag from unprivileged contexts
  • Unusual ring configurations where sq_array entries are repeatedly set to high indices approaching sq_entries - 1

Detection Strategies

  • Audit io_uring_setup syscalls and flag invocations using IORING_SETUP_SQE_MIXED without IORING_SETUP_NO_SQARRAY
  • Enable kernel runtime memory safety tooling such as KASAN in test environments to catch out-of-bounds reads
  • Monitor kernel logs for crash signatures originating from the io_uring subsystem

Monitoring Recommendations

  • Collect and centralize auditd records for io_uring_setup, io_uring_enter, and io_uring_register syscalls
  • Track kernel ring buffer messages for KASAN, slab-out-of-bounds, or general protection faults tied to io_uring
  • Inventory hosts running kernels that include SQE_MIXED support to scope exposure

How to Mitigate CVE-2026-43442

Immediate Actions Required

  • Apply the upstream kernel patches referenced in the fix commits and rebuild or update affected kernels
  • Restrict io_uring to trusted users via kernel.io_uring_disabled sysctl where the workload allows
  • Identify hosts exposing io_uring to untrusted local users such as container workloads or multi-tenant systems and prioritize patching

Patch Information

The fix replaces the cached_sq_head alignment check with direct validation of the physical SQE index, correctly handling both sq_array and NO_SQARRAY configurations. Apply the upstream commits 1f794f9bed3e5cf7250a3b4daf112a72ed1513e9 and 6f02c6b196036dbb6defb4647d8707d29b7fe95b, or update to a distribution kernel that incorporates them.

Workarounds

  • Disable io_uring system-wide by setting kernel.io_uring_disabled=2 via sysctl where workloads do not require it
  • Use seccomp profiles or Landlock policies to block io_uring_setup for untrusted processes and containers
  • Limit container runtimes to seccomp defaults that deny io_uring syscalls until the patched kernel is deployed
bash
# Disable io_uring for all users until the patched kernel is deployed
echo 'kernel.io_uring_disabled = 2' | sudo tee /etc/sysctl.d/99-disable-io_uring.conf
sudo sysctl --system

# Verify the setting
sysctl kernel.io_uring_disabled

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

  • SeverityHIGH

  • CVSS Score7.1

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • Technical References
  • Kernel Git Commit Reference

  • Kernel Git Commit Reference
  • Related CVEs
  • CVE-2026-46333: Linux Kernel Privilege Escalation Flaw

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

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

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