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

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

CVE-2023-26605 is a use-after-free vulnerability in Linux kernel 6.0.8 affecting fs-writeback.c. This flaw can lead to system instability and potential privilege escalation. This article covers technical details, impact, and mitigation.

Published: January 28, 2026

CVE-2023-26605 Overview

CVE-2023-26605 is a use-after-free vulnerability in the Linux kernel version 6.0.8. The flaw exists in the inode_cgwb_move_to_attached function within fs/fs-writeback.c, and is related to improper list handling in __list_del_entry_valid. This memory corruption vulnerability could allow a local attacker with low privileges to potentially achieve code execution or cause system instability.

Critical Impact

Local attackers can exploit this use-after-free condition to potentially execute arbitrary code with elevated privileges, compromise system confidentiality, integrity, and availability.

Affected Products

  • Linux Kernel 6.0.8
  • Linux Kernel versions containing the vulnerable fs/fs-writeback.c code
  • Systems running affected kernel versions without the security patch

Discovery Timeline

  • 2023-02-26 - CVE-2023-26605 published to NVD
  • 2025-05-05 - Last updated in NVD database

Technical Details for CVE-2023-26605

Vulnerability Analysis

This vulnerability is classified as CWE-416 (Use After Free), a dangerous memory corruption issue that occurs when a program continues to use a pointer after the memory it references has been freed. In the context of CVE-2023-26605, the flaw manifests in the Linux kernel's filesystem writeback subsystem, specifically within the cgroup writeback (cgwb) migration functionality.

The inode_cgwb_move_to_attached function is responsible for managing inode associations with cgroup writeback structures. When an inode is moved between cgroup writeback lists, improper list manipulation can lead to a condition where freed memory is subsequently accessed. The issue is related to the __list_del_entry_valid function, which is part of the kernel's list validation mechanism.

A local attacker requires low privileges to trigger this vulnerability, and no user interaction is needed. If successfully exploited, the attacker could achieve high impact on system confidentiality, integrity, and availability, potentially leading to privilege escalation or arbitrary code execution in kernel context.

Root Cause

The root cause lies in improper memory lifecycle management within the filesystem writeback code. Specifically, when list entries are being manipulated during cgroup writeback inode migrations, there is a race condition or improper ordering that allows an inode structure to be accessed after it has already been freed. The __list_del_entry_valid function, designed to validate list operations, is involved in the failure path, indicating that list corruption or use-after-free access is being detected but not prevented in all cases.

Attack Vector

The attack requires local access to the system. An attacker with low-level user privileges could craft specific filesystem operations or trigger particular writeback scenarios that exercise the vulnerable code path in inode_cgwb_move_to_attached. By carefully timing these operations or manipulating cgroup configurations, the attacker may be able to trigger the use-after-free condition.

The vulnerability does not require user interaction, meaning it can be triggered programmatically without any additional input from system users or administrators. The attack is confined to the local system (unchanged scope), but successful exploitation could grant the attacker complete control over confidentiality, integrity, and availability of the affected system.

Detection Methods for CVE-2023-26605

Indicators of Compromise

  • Kernel panic or oops messages referencing inode_cgwb_move_to_attached or fs-writeback.c
  • KASAN (Kernel Address Sanitizer) reports indicating use-after-free in the writeback subsystem
  • Unexpected system crashes during high filesystem I/O activity with cgroups enabled
  • Suspicious local user activity involving cgroup manipulation combined with filesystem operations

Detection Strategies

  • Enable KASAN in kernel builds to detect use-after-free conditions at runtime
  • Monitor kernel logs for oops messages containing __list_del_entry_valid or inode_cgwb_move_to_attached
  • Deploy SentinelOne Singularity Platform for real-time kernel-level threat detection and behavioral analysis
  • Implement audit rules to track unusual cgroup and filesystem writeback operations

Monitoring Recommendations

  • Configure centralized logging for kernel messages and enable verbose filesystem debugging in non-production environments
  • Use SentinelOne's endpoint detection capabilities to monitor for exploitation attempts targeting kernel vulnerabilities
  • Regularly review system logs for signs of memory corruption or unexpected kernel behavior
  • Monitor for privilege escalation attempts following filesystem-related anomalies

How to Mitigate CVE-2023-26605

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the fix (commit 4e3c51f4e805291b057d12f5dda5aeb50a538dc4)
  • Review and apply any vendor-specific security advisories, including the NetApp Security Advisory
  • Prioritize patching on systems with local user access or multi-tenant environments
  • Deploy SentinelOne agents to provide runtime protection while patches are being rolled out

Patch Information

The vulnerability has been addressed in the upstream Linux kernel. The fix is available in the Linux Kernel Commit. System administrators should update to a kernel version that incorporates this commit. Additional discussion regarding the fix can be found in the LKML Discussion Thread.

For systems using NetApp products, refer to the NetApp Security Advisory for product-specific guidance.

Workarounds

  • Restrict local user access to minimize the attack surface until patches can be applied
  • Disable cgroup writeback features if they are not required for your workload (may impact performance)
  • Implement strict access controls to limit which users can manipulate cgroups
  • Enable kernel hardening features such as KASAN in development/testing environments to detect exploitation attempts

The recommended approach is to apply the official kernel patch as soon as possible. Workarounds should be considered temporary measures only.

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.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
  • Linux Kernel Commit Update

  • LKML Discussion Thread

  • NetApp Security Advisory
  • 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