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

CVE-2023-0468: Linux Kernel Use-After-Free Vulnerability

CVE-2023-0468 is a use-after-free flaw in the Linux Kernel's io_uring subcomponent that may cause NULL pointer dereference due to a race condition. This article covers technical details, affected versions, and mitigations.

Published: February 4, 2026

CVE-2023-0468 Overview

A use-after-free vulnerability has been identified in the Linux Kernel's io_uring subsystem, specifically within the io_poll_check_events function in io_uring/poll.c. This flaw arises from a race condition involving poll_refs, which can lead to a NULL pointer dereference. The io_uring interface is a high-performance asynchronous I/O API in Linux, making this vulnerability particularly relevant for systems utilizing modern I/O operations.

Critical Impact

Local attackers with low privileges can exploit this race condition to cause system denial of service through NULL pointer dereference, potentially crashing the kernel and disrupting system availability.

Affected Products

  • Linux Kernel versions prior to 6.1
  • Linux Kernel 6.1 release candidates (rc1 through rc6)
  • Linux Kernel 6.1 initial release

Discovery Timeline

  • January 26, 2023 - CVE-2023-0468 published to NVD
  • April 1, 2025 - Last updated in NVD database

Technical Details for CVE-2023-0468

Vulnerability Analysis

This vulnerability is classified as CWE-416 (Use After Free), a memory corruption flaw that occurs when a program continues to use a pointer after the memory it references has been freed. In the context of CVE-2023-0468, the vulnerability manifests in the io_uring polling mechanism, a critical component of the Linux Kernel's asynchronous I/O infrastructure.

The io_uring subsystem provides efficient asynchronous I/O operations by using ring buffers shared between user space and kernel space. The polling functionality allows applications to efficiently wait for I/O events without blocking. However, a race condition in the poll_refs reference counting mechanism can cause the kernel to access memory after it has been freed.

Root Cause

The root cause of this vulnerability lies in improper synchronization of the poll_refs reference counter within the io_poll_check_events function. When multiple threads or operations concurrently access and modify the poll reference count, a race condition can occur where:

  1. One execution path decrements the reference count and triggers memory deallocation
  2. Another concurrent execution path attempts to access the same memory region
  3. The subsequent access results in a use-after-free condition, leading to a NULL pointer dereference

This synchronization failure violates the expected memory safety guarantees of the reference counting mechanism, allowing freed memory to be accessed.

Attack Vector

The attack vector for CVE-2023-0468 requires local access to the system. An attacker must be able to execute code on the target machine to trigger the race condition. The exploitation scenario involves:

The vulnerability requires local access with low privileges but no user interaction. An attacker would need to craft specific io_uring operations that trigger the race condition in io_poll_check_events. By rapidly creating and destroying poll operations, an attacker can increase the likelihood of hitting the vulnerable timing window where memory is freed but still referenced.

Successful exploitation results in a NULL pointer dereference, which typically causes a kernel panic or system crash, leading to denial of service. The attack complexity is high due to the need to win the race condition, which requires precise timing.

Detection Methods for CVE-2023-0468

Indicators of Compromise

  • Unexpected kernel panics or system crashes with call traces referencing io_poll_check_events or io_uring/poll.c
  • Kernel oops messages indicating NULL pointer dereference in io_uring subsystem
  • System instability when applications heavily utilize io_uring for asynchronous I/O operations
  • Core dumps showing memory corruption patterns consistent with use-after-free conditions

Detection Strategies

  • Monitor kernel logs for oops or panic messages containing references to io_uring, poll.c, or io_poll_check_events
  • Implement kernel crash dump analysis to identify patterns consistent with use-after-free exploitation
  • Deploy runtime kernel integrity monitoring to detect abnormal memory access patterns in io_uring subsystem
  • Use kernel memory debugging tools like KASAN (Kernel Address Sanitizer) to detect use-after-free conditions in development environments

Monitoring Recommendations

  • Enable kernel auditing for io_uring system calls to track unusual patterns of usage
  • Configure automated alerting for kernel panic events with io_uring-related stack traces
  • Monitor system stability metrics and correlate with io_uring-intensive workloads
  • Implement centralized log collection to aggregate kernel messages across multiple systems for pattern analysis

How to Mitigate CVE-2023-0468

Immediate Actions Required

  • Update affected Linux Kernel installations to patched versions that address the race condition in io_poll_check_events
  • Review systems running kernel versions 6.1 and its release candidates for vulnerability exposure
  • Consider temporarily disabling io_uring functionality if immediate patching is not possible and the feature is not critical
  • Prioritize patching systems where untrusted local users have access

Patch Information

The vulnerability has been tracked and addressed by the Linux Kernel maintainers. System administrators should consult the Red Hat Bug Report #2164024 for detailed patch information and vendor-specific guidance. Linux distribution vendors have released updated kernel packages that incorporate the fix for this race condition.

The fix involves proper synchronization of the poll_refs reference counting to prevent the race condition that leads to use-after-free. Organizations should update to kernel versions that include this fix through their standard package management processes.

Workarounds

  • Restrict local access to systems to minimize the attack surface for local privilege users who could exploit this vulnerability
  • If feasible, disable io_uring subsystem by setting io_uring_disabled=2 boot parameter on systems where this functionality is not required
  • Implement system call filtering using seccomp to restrict io_uring-related syscalls for untrusted processes
  • Monitor and limit resources available to local users to reduce the likelihood of successful race condition exploitation
bash
# Configuration example
# Disable io_uring at boot time by adding kernel parameter
# Add to GRUB_CMDLINE_LINUX in /etc/default/grub:
GRUB_CMDLINE_LINUX="io_uring_disabled=2"

# Update GRUB configuration
sudo update-grub

# Alternatively, disable at runtime (requires kernel support)
echo 2 | sudo tee /proc/sys/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
  • TypeUse After Free

  • Vendor/TechLinux Kernel

  • SeverityMEDIUM

  • CVSS Score4.7

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-416
  • Vendor Resources
  • Red Hat Bug Report #2164024
  • 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