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

CVE-2026-23087: Linux Kernel Memory Leak Vulnerability

CVE-2026-23087 is a memory leak vulnerability in the Linux kernel's scsi xen scsiback component that occurs when memory is not properly freed during device removal. This article covers technical details, affected systems, and fixes.

Published: February 6, 2026

CVE-2026-23087 Overview

A memory leak vulnerability has been identified in the Linux kernel's Xen SCSI backend driver (scsiback). The vulnerability exists in the scsiback_remove() function, where memory allocated for struct vscsiblk_info during scsiback_probe() is not properly freed. This results in memory leaks when the device is removed or when error paths are triggered during the probe phase.

Critical Impact

Repeated exploitation of this memory leak could lead to kernel memory exhaustion, potentially causing system instability or denial of service conditions on Xen virtualized environments.

Affected Products

  • Linux Kernel (multiple versions with Xen SCSI backend support)
  • Xen hypervisor environments using SCSI passthrough
  • Systems utilizing the xen-scsiback driver module

Discovery Timeline

  • 2026-02-04 - CVE CVE-2026-23087 published to NVD
  • 2026-02-05 - Last updated in NVD database

Technical Details for CVE-2026-23087

Vulnerability Analysis

This vulnerability is a classic memory leak in kernel driver code. The scsiback_probe() function allocates memory for struct vscsiblk_info to store device-specific information for the Xen SCSI backend. However, the corresponding cleanup function scsiback_remove() fails to deallocate this memory structure when the device is removed from the system.

The memory leak affects two code paths: the normal device removal path through scsiback_remove() and the error handling paths within scsiback_probe() itself. When either of these paths is executed without proper memory cleanup, the allocated vscsiblk_info structure becomes unreachable, leading to memory leakage.

In virtualized environments where devices may be frequently attached and detached, this vulnerability can compound over time, gradually consuming available kernel memory until the system becomes unstable or unresponsive.

Root Cause

The root cause is missing deallocation logic in the scsiback_remove() function. When the driver was originally implemented, the kfree() call to release the struct vscsiblk_info memory was not included in the removal function. Additionally, the error handling paths in scsiback_probe() did not properly clean up the allocated structure before returning failure codes.

Attack Vector

The attack vector for this vulnerability is limited to local exploitation scenarios where an attacker has the ability to repeatedly trigger device probe and removal operations. On systems running Xen with SCSI backend support, an attacker with sufficient privileges in a guest VM or with local access to the hypervisor management interfaces could potentially exploit this by repeatedly adding and removing SCSI devices to exhaust kernel memory over time.

The vulnerability requires local access and the ability to manipulate device configurations, making it more suitable for denial of service attacks rather than privilege escalation or code execution.

Detection Methods for CVE-2026-23087

Indicators of Compromise

  • Gradual increase in kernel memory usage over time without corresponding workload increase
  • Memory allocation failures in kernel logs related to SCSI or Xen subsystems
  • System instability or slowdowns on Xen-based virtualized systems with frequent SCSI device operations
  • Kernel OOM (Out of Memory) killer activations on systems with Xen SCSI backend enabled

Detection Strategies

  • Monitor kernel memory usage trends using tools like /proc/meminfo and slabtop to detect gradual memory consumption
  • Implement kernel memory leak detection using KMEMLEAK debugging facility when available
  • Review system logs for Xen SCSI backend related errors or warnings during device removal operations
  • Use ftrace or perf to monitor scsiback_probe() and scsiback_remove() function calls and correlate with memory allocation patterns

Monitoring Recommendations

  • Configure alerting for sustained growth in kernel slab allocations on Xen hosts
  • Monitor /sys/kernel/debug/kmemleak for unreferenced memory objects when debugging is enabled
  • Track SCSI device attach/detach events in conjunction with memory metrics
  • Implement baseline memory profiling for Xen hypervisor hosts to detect anomalous consumption

How to Mitigate CVE-2026-23087

Immediate Actions Required

  • Apply the appropriate kernel patch for your distribution immediately
  • If patching is not immediately possible, consider disabling or unloading the xen-scsiback module if not required
  • Monitor affected systems for memory exhaustion symptoms until patches can be applied
  • Limit SCSI device configuration changes on affected systems to reduce exposure

Patch Information

The Linux kernel maintainers have released patches to address this memory leak. The fix adds proper kfree() calls in scsiback_remove() to deallocate the vscsiblk_info structure, and ensures error paths in scsiback_probe() properly clean up allocated memory before returning.

Patches are available through the stable kernel tree:

  • Kernel Git Commit 24c441f0
  • Kernel Git Commit 32e52b56
  • Kernel Git Commit 901a5f30
  • Kernel Git Commit f86264ec

Workarounds

  • Unload the xen-scsiback kernel module using modprobe -r xen-scsiback if SCSI passthrough functionality is not required
  • Blacklist the module by adding blacklist xen-scsiback to /etc/modprobe.d/blacklist.conf to prevent automatic loading
  • Minimize SCSI device add/remove operations on affected systems until patches are applied
  • Implement periodic system reboots as a temporary measure to reclaim leaked memory on critical systems
bash
# Temporary workaround: Unload the vulnerable module if not in use
lsmod | grep xen_scsiback
modprobe -r xen-scsiback

# Prevent automatic loading
echo "blacklist xen-scsiback" >> /etc/modprobe.d/blacklist-xen-scsiback.conf

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeOther

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit 24c441f0

  • Kernel Git Commit 32e52b56

  • Kernel Git Commit 901a5f30

  • Kernel Git Commit f86264ec
  • Related CVEs
  • CVE-2026-31439: Linux Kernel XDMA Error Handling Flaw

  • CVE-2026-31441: Linux Kernel Memory Leak Vulnerability

  • CVE-2026-31434: Linux Kernel Memory Leak Vulnerability

  • CVE-2026-31435: Linux Kernel Read Abandonment 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