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-2023-3389

CVE-2023-3389: Linux Kernel Privilege Escalation Flaw

CVE-2023-3389 is a use-after-free privilege escalation vulnerability in the Linux Kernel io_uring subsystem that enables local attackers to gain elevated privileges. This article covers technical details, affected versions, and patches.

Published: February 4, 2026

CVE-2023-3389 Overview

A use-after-free vulnerability exists in the Linux Kernel's io_uring subsystem that can be exploited by local attackers to achieve privilege escalation. The vulnerability occurs when racing an io_uring cancel poll request with a linked timeout, which causes a use-after-free condition in a high-resolution timer (hrtimer).

The io_uring interface is a high-performance asynchronous I/O API introduced in Linux kernel 5.1, designed to reduce system call overhead. Due to its complexity and direct kernel interaction, vulnerabilities in this subsystem often have significant security implications, including the potential for complete system compromise through local privilege escalation.

Critical Impact

Local attackers with limited privileges can exploit this use-after-free condition to escalate privileges to root, potentially gaining complete control over the affected system.

Affected Products

  • Linux Kernel (versions prior to the security patches)
  • Canonical Ubuntu Linux (14.04 ESM, 16.04 ESM, 18.04 LTS, 20.04 LTS, 22.04 LTS)
  • Debian Linux (10.0 Buster, 11.0 Bullseye)

Discovery Timeline

  • June 28, 2023 - CVE-2023-3389 published to NVD
  • February 13, 2025 - Last updated in NVD database

Technical Details for CVE-2023-3389

Vulnerability Analysis

This vulnerability is classified as CWE-416 (Use After Free), a memory corruption class that occurs when a program continues to use a pointer after the memory it references has been freed. In the context of the Linux kernel's io_uring subsystem, the vulnerability manifests through a race condition involving poll request cancellation and linked timeouts.

The io_uring subsystem provides an efficient mechanism for batching I/O operations through submission and completion queues shared between user space and kernel space. When handling cancel poll requests with linked timeouts, improper synchronization allows an hrtimer callback to access memory that has already been freed, creating an exploitable use-after-free condition.

An attacker with local access and the ability to create io_uring instances can trigger this race condition to corrupt kernel memory, potentially allowing arbitrary code execution in kernel context and subsequent privilege escalation from an unprivileged user to root.

Root Cause

The root cause of this vulnerability lies in a race condition within the io_uring poll cancellation path. When a poll request is cancelled while a linked timeout is associated with it, improper ordering of cleanup operations allows the hrtimer to fire and access freed memory.

Specifically, the vulnerability occurs because:

  1. The poll request cancellation does not properly coordinate with the linked timeout mechanism
  2. The hrtimer callback may execute after the associated io_uring request has been freed
  3. Insufficient locking or reference counting allows the dangling pointer access

The fix involves ensuring proper synchronization between poll cancellation and timeout handling to prevent the use-after-free condition.

Attack Vector

The attack requires local access to the system with the ability to create and manipulate io_uring instances. The exploitation technique involves:

  1. Creating an io_uring instance with appropriate rings for submission and completion
  2. Submitting a poll request with an associated linked timeout
  3. Racing the cancellation of the poll request against the timeout expiration
  4. Triggering the use-after-free to corrupt kernel memory structures
  5. Leveraging the corruption to achieve privilege escalation

Since this is a race condition, successful exploitation may require multiple attempts to win the race and achieve the desired memory corruption state. However, documented techniques for exploiting io_uring vulnerabilities have demonstrated reliable exploitation paths. The vulnerability does not require user interaction and can be triggered by any local user with access to the io_uring interface.

Detection Methods for CVE-2023-3389

Indicators of Compromise

  • Unexpected kernel crashes or oops messages related to io_uring subsystem components
  • Anomalous processes running with elevated privileges that should not have root access
  • System logs showing repeated io_uring-related operations from non-privileged users
  • Suspicious process behavior patterns involving rapid io_uring instance creation and cancellation

Detection Strategies

  • Monitor for kernel panic or crash logs mentioning io_uring, hrtimer, or use-after-free conditions
  • Implement kernel auditing for io_uring system calls (io_uring_setup, io_uring_enter) from untrusted processes
  • Deploy behavioral detection to identify processes attempting rapid io_uring operations followed by privilege changes
  • Use memory corruption detection tools and kernel address sanitizers in development environments

Monitoring Recommendations

  • Enable kernel crash dump collection to capture exploitation attempts that result in system instability
  • Configure audit rules for monitoring io_uring-related syscalls across the enterprise
  • Implement endpoint detection for processes spawning with unexpected privilege levels
  • Review system authentication logs for anomalous privilege escalations following io_uring activity

How to Mitigate CVE-2023-3389

Immediate Actions Required

  • Update the Linux kernel to a patched version containing the security fix immediately
  • Apply vendor-specific kernel updates from Ubuntu and Debian repositories
  • Consider restricting io_uring access using seccomp or disabling it via io_uring_disabled sysctl if not required
  • Monitor systems for exploitation attempts while patching is in progress

Patch Information

The vulnerability has been addressed through the following kernel commits:

  • Mainline kernel: Commit ef7dfac51d8ed961b742218f526bd589f3900a59 - Linux Kernel Commit #ef7dfac
  • 5.10 stable branch: Commit 4716c73b188566865bdd79c3a6709696a224ac04 - Linux Kernel Commit #4716c73
  • 5.15 stable branch: Commit 0e388fce7aec40992eadee654193cad345d62663 - Linux Kernel Commit #0e388fc

Vendor-specific security advisories:

  • Debian Security Advisory DSA-5480
  • Debian LTS Announcement
  • NetApp Security Advisory
  • Kernel Live Patch Security Notice LSN-0097-1

Workarounds

  • Disable io_uring system-wide using the io_uring_disabled sysctl parameter if your workloads do not require it
  • Use seccomp filters to block io_uring system calls for untrusted processes or containers
  • Restrict user access to systems where immediate patching is not possible
  • Consider using kernel live patching solutions to apply fixes without system reboots
bash
# Disable io_uring system-wide (requires kernel 5.12.4+ or backported support)
echo 2 | sudo tee /proc/sys/kernel/io_uring_disabled

# Add to /etc/sysctl.conf for persistence across reboots
echo "kernel.io_uring_disabled=2" | sudo tee -a /etc/sysctl.conf

# Apply seccomp profile to block io_uring in containerized environments
# Example for Docker: add to security profile
# "io_uring_setup": "SCMP_ACT_ERRNO",
# "io_uring_enter": "SCMP_ACT_ERRNO",
# "io_uring_register": "SCMP_ACT_ERRNO"

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

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.02%

  • 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
  • Packet Storm Security Notice

  • Debian LTS Announcement

  • NetApp Security Advisory

  • Debian Security Advisory DSA-5480
  • Vendor Resources
  • Linux Kernel Commit #4716c73

  • Linux Kernel Commit #0e388fc

  • Linux Kernel Commit #ef7dfac

  • Kernel Dance Commit #0e388fc

  • Kernel Dance Commit #4716c73

  • Kernel Dance Commit #ef7dfac
  • Related CVEs
  • CVE-2026-31429: Linux Kernel Privilege Escalation Bug

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

  • CVE-2026-32282: Linux Root.Chmod Privilege Escalation Flaw

  • CVE-2025-11561: SSSD Privilege Escalation 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