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-2026-23193

CVE-2026-23193: Linux Kernel iSCSI Use-After-Free Flaw

CVE-2026-23193 is a use-after-free vulnerability in the Linux kernel iSCSI target subsystem that causes memory corruption during session cleanup. This article covers the technical details, affected versions, and mitigation.

Published: February 20, 2026

CVE-2026-23193 Overview

CVE-2026-23193 is a use-after-free vulnerability in the Linux kernel's iSCSI target subsystem. The flaw exists in the iscsit_dec_session_usage_count() function, where a race condition can lead to accessing deallocated memory. When the function calls complete() while still holding the sess->session_usage_lock, a waiting thread (such as in the session release path) may wake up and free the iscsit_session structure before the current thread finishes executing spin_unlock_bh() on the session structure.

This creates a dangerous scenario where the kernel attempts to access memory that has already been freed, resulting in a KASAN slab-use-after-free error. This type of memory corruption vulnerability can potentially lead to kernel crashes, denial of service conditions, or in some cases, privilege escalation if an attacker can control the contents of the freed memory region.

Critical Impact

Use-after-free vulnerability in the Linux kernel iSCSI target subsystem could lead to system instability, kernel crashes, or potential privilege escalation on systems running iSCSI target services.

Affected Products

  • Linux Kernel (multiple stable versions)
  • Systems running iSCSI target services
  • Enterprise storage servers utilizing Linux iSCSI targets

Discovery Timeline

  • 2026-02-14 - CVE CVE-2026-23193 published to NVD
  • 2026-02-18 - Last updated in NVD database

Technical Details for CVE-2026-23193

Vulnerability Analysis

The vulnerability resides in the iSCSI target driver within the Linux kernel, specifically in the session usage count decrement logic. The iscsit_dec_session_usage_count() function is responsible for managing reference counting on iSCSI sessions. When this counter reaches zero, the session may be freed.

The problematic code flow occurs when multiple threads interact with the session lifecycle:

  1. Thread A holds sess->session_usage_lock and decrements the usage count
  2. Thread A calls complete() to signal a waiter while still holding the lock
  3. Thread B (the waiter) wakes up immediately and proceeds to free the session structure
  4. Thread A attempts to call spin_unlock_bh() on the now-deallocated session structure

This race window, though potentially small, can be triggered under specific timing conditions, particularly on multi-core systems with concurrent iSCSI session management operations.

Root Cause

The root cause is improper lock ordering and premature signaling in the session cleanup path. The complete() function is called before releasing the session_usage_lock, allowing the signaled waiter to proceed with deallocation while the lock is still held. This violates the principle that all references to a structure must be completed before signaling its availability for deallocation.

The fix involves reordering the operations: releasing the session_usage_lock before calling complete(). This ensures that all dereferences of the sess pointer are finished before the waiter is allowed to proceed with freeing the session structure.

Attack Vector

Exploitation of this vulnerability would require:

  1. Access to a system running iSCSI target services
  2. The ability to trigger concurrent iSCSI session establishment and teardown operations
  3. Precise timing to win the race condition between session release and lock operations

While the attack vector complexity is relatively high due to the race condition nature, skilled attackers could potentially leverage this for local denial of service or, with heap manipulation techniques, potentially achieve privilege escalation. The vulnerability is most likely to manifest as kernel panics or memory corruption during heavy iSCSI session management activity.

The flaw affects the SCSI target subsystem, which is commonly used in enterprise storage environments. Systems serving as iSCSI targets for storage area networks (SANs) are the primary targets for this vulnerability.

Detection Methods for CVE-2026-23193

Indicators of Compromise

  • KASAN (Kernel Address Sanitizer) reports indicating slab-use-after-free in iSCSI target code paths
  • Kernel crashes or panics with stack traces referencing iscsit_dec_session_usage_count() or related iSCSI session management functions
  • Unusual system instability during high-volume iSCSI session operations
  • Kernel log messages indicating memory corruption in the SCSI target subsystem

Detection Strategies

  • Enable KASAN in development/test kernels to detect use-after-free conditions during iSCSI session stress testing
  • Monitor kernel logs for oops/panic messages containing iSCSI target subsystem references
  • Implement kernel lockdep debugging to identify potential lock ordering issues
  • Deploy crash dump analysis tools to capture and analyze kernel crashes related to iSCSI sessions

Monitoring Recommendations

  • Configure kdump or crash kernel for automatic kernel crash dump collection
  • Set up automated alerting for kernel panic events on iSCSI target servers
  • Monitor iSCSI session connection/disconnection rates for anomalous patterns
  • Implement centralized logging for kernel messages across all systems running iSCSI target services

How to Mitigate CVE-2026-23193

Immediate Actions Required

  • Update the Linux kernel to a patched version containing the fix for this vulnerability
  • If immediate patching is not possible, consider temporarily disabling iSCSI target services on critical systems
  • Review and prioritize patching for systems actively serving as iSCSI targets
  • Enable additional kernel hardening options such as SLAB_FREELIST_HARDENED if available

Patch Information

The vulnerability has been addressed through multiple kernel commits that reorder the lock release and completion signaling operations. The fix ensures that session_usage_lock is released before complete() is called, preventing the use-after-free condition.

Patched versions are available through the following kernel git commits:

  • Kernel Git Commit 11ebafff
  • Kernel Git Commit 2b64015
  • Kernel Git Commit 41b86a9
  • Kernel Git Commit 4530f4e
  • Kernel Git Commit 84dc603
  • Kernel Git Commit d8dbdc1
  • Kernel Git Commit fd8b090

Organizations should update to the latest stable kernel version from their distribution vendor that includes these fixes.

Workarounds

  • Limit iSCSI target access to trusted networks and clients only using firewall rules
  • Reduce concurrent iSCSI session operations where possible to minimize race condition exposure
  • Implement network segmentation to isolate iSCSI target systems from untrusted networks
  • Consider using alternative storage protocols temporarily if iSCSI target services can be deferred until patching
bash
# Restrict iSCSI target port access to trusted networks only
iptables -A INPUT -p tcp --dport 3260 -s 10.0.0.0/8 -j ACCEPT
iptables -A INPUT -p tcp --dport 3260 -j DROP

# Check current kernel version for patch status
uname -r

# Verify iSCSI target module is loaded (if running iSCSI target services)
lsmod | grep iscsi_target

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

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit 11ebafff

  • Kernel Git Commit 2b64015

  • Kernel Git Commit 41b86a9

  • Kernel Git Commit 4530f4e

  • Kernel Git Commit 84dc603

  • Kernel Git Commit d8dbdc1

  • Kernel Git Commit fd8b090
  • 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