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

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

CVE-2022-3910 is a use-after-free flaw in Linux Kernel's io_uring that enables local privilege escalation through improper reference counting. This article covers technical details, affected versions, and patches.

Published: February 11, 2026

CVE-2022-3910 Overview

CVE-2022-3910 is a Use After Free vulnerability in the Linux Kernel's io_uring subsystem that enables local privilege escalation. The flaw stems from an improper update of reference count when io_msg_ring is invoked with a fixed file. When this occurs, the kernel incorrectly calls io_fput_file() which improperly decreases the file's reference count. Since fixed files are permanently registered to the ring and should not be released separately, this leads to a Use-After-Free condition that attackers can exploit to escalate privileges on affected systems.

Critical Impact

Local attackers with low privileges can exploit this Use-After-Free vulnerability to achieve full root-level privileges on affected Linux systems, potentially compromising system integrity and confidentiality.

Affected Products

  • Linux Kernel versions prior to the fix commit
  • Linux Kernel 6.0-rc1 through 6.0-rc5
  • Systems using io_uring with fixed file functionality

Discovery Timeline

  • November 22, 2022 - CVE CVE-2022-3910 published to NVD
  • November 21, 2024 - Last updated in NVD database

Technical Details for CVE-2022-3910

Vulnerability Analysis

This Use After Free vulnerability exists within the io_msg_ring function of the Linux Kernel's io_uring subsystem. The io_uring interface is a high-performance asynchronous I/O framework that allows applications to efficiently submit and process I/O requests. The vulnerability specifically affects how fixed files—files that are permanently registered with an io_uring ring for repeated use—are handled during message ring operations.

When io_msg_ring processes operations involving fixed files, it erroneously invokes io_fput_file() to release the file reference. However, fixed files maintain a persistent registration with the ring and should never have their reference count decremented through this path. The improper reference count decrement causes the file structure to be freed prematurely while still being referenced by the io_uring ring, creating a classic Use-After-Free condition.

An attacker with local access can manipulate this race condition to corrupt kernel memory structures, ultimately achieving arbitrary code execution with kernel privileges. This enables complete system compromise including the ability to read/write arbitrary kernel memory, disable security mechanisms, and install persistent rootkits.

Root Cause

The root cause is an improper reference count management issue (CWE-416) in the io_uring message ring implementation. The code failed to check whether the file being processed was a fixed file before calling io_put_file(). Fixed files have a different lifecycle than regular files in io_uring—they remain registered throughout the ring's lifetime and should not be individually released. The missing conditional check led to premature deallocation of file structures that were still in active use.

Attack Vector

This is a local attack vector requiring an authenticated attacker with low-level privileges on the target system. The attacker must be able to create io_uring instances and register fixed files, then trigger the vulnerable io_msg_ring code path to cause the reference count underflow. By carefully timing subsequent memory allocations, the attacker can reclaim the freed memory with controlled data, enabling kernel code execution and privilege escalation to root.

c
// Security patch from io_uring/msg_ring.c - io_uring/msg_ring: check file type before putting
 	req_set_fail(req);
 	io_req_set_res(req, ret, 0);
 	/* put file to avoid an attempt to IOPOLL the req */
-	io_put_file(req->file);
+	if (!(req->flags & REQ_F_FIXED_FILE))
+		io_put_file(req->file);
 	req->file = NULL;
 	return IOU_OK;
}

Source: GitHub Linux Commit

Detection Methods for CVE-2022-3910

Indicators of Compromise

  • Unexpected kernel panics or crashes related to io_uring subsystem operations
  • Abnormal process privilege changes from unprivileged to root without sudo/su authentication
  • Suspicious io_uring system call patterns with fixed file registration followed by msg_ring operations
  • Kernel log messages indicating use-after-free or memory corruption in io_uring components

Detection Strategies

  • Monitor for processes making intensive io_uring system calls (io_uring_setup, io_uring_enter) especially from non-standard applications
  • Deploy kernel address sanitizer (KASAN) in development environments to detect use-after-free conditions
  • Implement audit rules to track io_uring syscall usage across the system
  • Use SentinelOne's behavioral AI to detect privilege escalation attempts following io_uring activity

Monitoring Recommendations

  • Enable kernel auditing for io_uring-related syscalls on critical servers
  • Configure alerting for unexpected setuid/setgid changes or capability modifications
  • Review process genealogy for suspicious privilege elevation from unprivileged user contexts
  • Monitor kernel dmesg output for memory corruption warnings or KASAN reports

How to Mitigate CVE-2022-3910

Immediate Actions Required

  • Update the Linux Kernel to a version containing commit fc7222c3a9f56271fba02aabbfbae999042f1679 or later
  • Prioritize patching on multi-user systems where local privilege escalation poses the highest risk
  • Restrict io_uring access to trusted users via sysctl kernel.io_uring_disabled if available in your kernel version
  • Audit systems for signs of previous exploitation before applying patches

Patch Information

The vulnerability has been addressed in the upstream Linux Kernel. The fix adds a conditional check to verify whether the file being processed is a fixed file before calling io_put_file(). If the REQ_F_FIXED_FILE flag is set, the file release is skipped, preventing the improper reference count decrement. Organizations should update to kernel versions that include commit fc7222c3a9f56271fba02aabbfbae999042f1679 or apply patches from their distribution vendor.

Workarounds

  • Disable io_uring system-wide using sysctl: kernel.io_uring_disabled=2 (requires kernel 5.19.4+ or 5.18.18+)
  • Restrict io_uring access using seccomp filters to block io_uring_setup and io_uring_enter syscalls
  • Limit local user access on affected systems until patches can be applied
  • Use container isolation with seccomp profiles that block io_uring syscalls for untrusted workloads
bash
# Configuration example - Disable io_uring system-wide (requires kernel 5.19.4+ or 5.18.18+)
echo "kernel.io_uring_disabled = 2" >> /etc/sysctl.d/99-disable-io_uring.conf
sysctl -p /etc/sysctl.d/99-disable-io_uring.conf

# Verify io_uring is disabled
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
  • TypeUse After Free

  • Vendor/TechLinux Kernel

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.55%

  • 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

  • NVD-CWE-Other
  • Vendor Resources
  • GitHub Linux Commit

  • Kernel Dance Reference
  • Related CVEs
  • CVE-2026-23462: Linux Kernel Use-After-Free Vulnerability

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

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

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