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-2022-2602

CVE-2022-2602: Linux Kernel Use-After-Free Vulnerability

CVE-2022-2602 is a use-after-free vulnerability in Linux Kernel's io_uring subsystem involving Unix SCM garbage collection. This flaw can lead to memory corruption and privilege escalation. This article covers technical details, affected versions, impact assessment, and mitigation strategies.

Published: February 17, 2026

CVE-2022-2602 Overview

CVE-2022-2602 is a Use-After-Free vulnerability in the Linux kernel affecting the interaction between io_uring and Unix socket SCM (Socket Control Message) garbage collection mechanisms. This flaw enables local attackers with low privileges to potentially escalate their privileges on vulnerable systems by exploiting a race condition in how the kernel handles file descriptor references during garbage collection.

Critical Impact

Local privilege escalation through kernel memory corruption, allowing attackers to gain root access on affected Linux systems.

Affected Products

  • Linux Kernel (multiple versions)
  • Canonical Ubuntu Linux 18.04 ESM
  • Canonical Ubuntu Linux 20.04 LTS
  • Canonical Ubuntu Linux 22.04 LTS
  • Canonical Ubuntu Linux 22.10

Discovery Timeline

  • 2024-01-08 - CVE-2022-2602 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2022-2602

Vulnerability Analysis

This vulnerability exists in the Linux kernel's io_uring subsystem and its interaction with Unix domain socket garbage collection. The io_uring interface is a high-performance asynchronous I/O framework introduced in Linux kernel 5.1 that allows user-space applications to submit I/O requests without system call overhead for each operation.

The flaw arises from a broken interaction between io_uring file descriptor handling and the Unix socket garbage collection mechanism. When file descriptors are passed between processes using Unix domain sockets via SCM_RIGHTS, the kernel maintains reference counts to track ownership. The garbage collector is responsible for cleaning up file descriptors that are in-flight but no longer reachable.

The vulnerability occurs because the io_uring subsystem can hold references to file descriptors in a way that the Unix GC doesn't properly account for. This creates a window where the garbage collector may free a file structure while io_uring still holds a reference to it, resulting in a Use-After-Free condition.

Root Cause

The root cause is a synchronization issue (CWE-416: Use After Free) between two kernel subsystems. When a file descriptor registered with io_uring is also passed through a Unix socket, the garbage collection mechanism may incorrectly determine that the file descriptor is unreachable and free the underlying struct file. The io_uring subsystem then operates on freed memory when it attempts to use the now-invalid file reference.

This is fundamentally a reference counting and lifecycle management problem where two independent kernel subsystems have conflicting views of whether a kernel object is still in use.

Attack Vector

The attack requires local access to the target system with the ability to execute code. An attacker can exploit this vulnerability through the following general approach:

  1. Create an io_uring instance and register file descriptors with it
  2. Establish Unix domain socket connections and pass the registered file descriptors via SCM_RIGHTS
  3. Manipulate the socket state to trigger garbage collection
  4. Race the garbage collector against io_uring operations to cause the file structure to be freed while still referenced
  5. Leverage the Use-After-Free to corrupt kernel memory and escalate privileges

The exploitation requires precise timing to win the race condition. Technical details and proof-of-concept analysis are available in the Packet Storm Exploit Analysis.

Detection Methods for CVE-2022-2602

Indicators of Compromise

  • Unexpected kernel crashes or panics, particularly those referencing io_uring or Unix socket garbage collection code paths
  • Suspicious processes making unusual combinations of io_uring syscalls (io_uring_setup, io_uring_register) along with Unix domain socket operations
  • Evidence of privilege escalation from unprivileged user accounts
  • Kernel log messages indicating memory corruption or invalid memory access in io_uring related functions

Detection Strategies

  • Monitor for processes creating io_uring instances in combination with heavy Unix socket file descriptor passing
  • Deploy kernel runtime integrity monitoring to detect unexpected kernel memory modifications
  • Implement system call auditing to track io_uring and socket-related activity from unprivileged users
  • Use kernel address sanitizer (KASAN) in development/testing environments to detect Use-After-Free conditions

Monitoring Recommendations

  • Enable kernel auditing subsystem to log io_uring operations and Unix socket communications
  • Configure endpoint detection and response (EDR) solutions to monitor for known exploitation patterns
  • Review kernel logs for signs of memory corruption or unexpected behavior in affected subsystems
  • Implement real-time monitoring of privilege escalation attempts

How to Mitigate CVE-2022-2602

Immediate Actions Required

  • Apply vendor-provided kernel security updates immediately on all affected systems
  • If patches cannot be applied immediately, consider disabling io_uring through kernel parameters
  • Audit systems for signs of compromise before and after patching
  • Prioritize patching systems accessible to untrusted local users

Patch Information

Canonical has released multiple security updates addressing this vulnerability:

  • Ubuntu Security Notice USN-5691-1
  • Ubuntu Security Notice USN-5692-1
  • Ubuntu Security Notice USN-5693-1
  • Ubuntu Security Notice USN-5700-1
  • Ubuntu Security Notice USN-5752-1

Additional technical details can be found in the CVE-2022-2602 Detail entry.

Workarounds

  • Disable io_uring functionality if not required by applications on the system
  • Restrict access to io_uring syscalls using seccomp filters for untrusted processes
  • Implement additional sandboxing and isolation for processes from untrusted users
  • Use container security profiles to block io_uring access in containerized workloads
bash
# Disable io_uring at kernel level (requires kernel 5.19+ or backported sysctl)
# Note: This may impact application performance that relies on io_uring
echo 0 > /proc/sys/kernel/io_uring_disabled

# Alternative: Add to sysctl.conf for persistence
echo "kernel.io_uring_disabled = 1" >> /etc/sysctl.conf
sysctl -p

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

  • SeverityHIGH

  • CVSS Score7.0

  • EPSS Probability1.20%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-416
  • Technical References
  • Packet Storm Exploit Analysis

  • CVE-2022-2602 Detail

  • Ubuntu Security Notice USN-5691-1

  • Ubuntu Security Notice USN-5692-1

  • Ubuntu Security Notice USN-5693-1

  • Ubuntu Security Notice USN-5700-1

  • Ubuntu Security Notice USN-5752-1
  • Related CVEs
  • CVE-2026-31745: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43048: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43049: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43056: 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