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

CVE-2026-43055: Linux Kernel Privilege Escalation Flaw

CVE-2026-43055 is a privilege escalation vulnerability in the Linux Kernel affecting the SCSI target file subsystem. This flaw involves uninitialized memory in aio_cmd causing write failures. Learn the technical details.

Published: May 7, 2026

CVE-2026-43055 Overview

CVE-2026-43055 is a Linux kernel vulnerability in the SCSI target subsystem (target_core_file). The flaw stems from the aio_cmd allocation path failing to initialize the iocb->ki_write_stream field. When fd_execute_rw_aio() executes a write command, the uninitialized value can exceed max_write_streams checks in the underlying block device, producing unintended write failures. The fix replaces the original allocator with kzalloc_flex, ensuring ki_write_stream is zeroed at allocation time. The vulnerability affects Linux kernel 7.0 release candidates rc1 through rc5.

Critical Impact

Remote attackers can trigger SCSI target write failures over the network, causing availability loss in storage targets exposed via LIO/iSCSI without requiring authentication or user interaction.

Affected Products

  • Linux Kernel 7.0-rc1
  • Linux Kernel 7.0-rc2 through 7.0-rc4
  • Linux Kernel 7.0-rc5

Discovery Timeline

  • 2026-05-01 - CVE CVE-2026-43055 published to NVD
  • 2026-05-07 - Last updated in NVD database

Technical Details for CVE-2026-43055

Vulnerability Analysis

The vulnerability resides in the Linux kernel's LIO SCSI target backend target_core_file. The aio_cmd structure embeds an iocb used to dispatch asynchronous I/O to the backing file or block device. Prior to the fix, allocation did not zero the ki_write_stream member of the embedded iocb. The field therefore contained whatever residual data occupied that slab memory.

During write submission via fd_execute_rw_aio(), the kernel passes the iocb to the underlying block device. The block layer compares iocb->ki_write_stream against max_write_streams. A non-zero, attacker-influenceable, or stale value causes the write to be rejected. The result is an availability impact on storage I/O paths exposed by the SCSI target.

Root Cause

The root cause is uninitialized memory use [CWE-908]. The original allocator did not clear the ki_write_stream field, and the SCSI target code did not explicitly initialize it before submission. Replacing the allocation with kzalloc_flex guarantees the structure is zero-initialized, including any flexible array members, ensuring ki_write_stream = 0.

Attack Vector

The attack vector is network-based. SCSI targets exposed via iSCSI or other LIO fabrics accept write commands from initiators. A remote initiator issuing write operations to a vulnerable target can encounter failed writes whenever the uninitialized ki_write_stream value exceeds the device's max_write_streams. The CVSS vector indicates no privileges or user interaction are required, with availability as the only impacted dimension.

No public proof-of-concept code is available, and the vulnerability is not listed in the CISA Known Exploited Vulnerabilities catalog. Refer to the upstream commits for the precise patch logic: Kernel Git Commit 01f784f, Kernel Git Commit 4eaff17, and Kernel Git Commit ce54802.

Detection Methods for CVE-2026-43055

Indicators of Compromise

  • Unexplained write command failures returned to iSCSI or LIO initiators on hosts running Linux 7.0-rc1 through 7.0-rc5.
  • Kernel log entries from the block layer rejecting I/O due to ki_write_stream exceeding max_write_streams.
  • Storage availability incidents correlated with SCSI target backends using target_core_file on file-backed LUNs.

Detection Strategies

  • Inventory Linux hosts running kernel 7.0-rc1 through 7.0-rc5 that load target_core_file and expose LIO targets.
  • Audit running kernels with uname -r and confirm whether the upstream fix commits are present in the deployed source tree.
  • Correlate dmesg output and /var/log/messages for write rejection patterns originating in fd_execute_rw_aio.

Monitoring Recommendations

  • Monitor SCSI target write error rates and surface anomalies to the SOC.
  • Track kernel version drift across storage and virtualization hosts using configuration management telemetry.
  • Alert on kernel module loads of target_core_file on systems where the fabric is not expected to be in use.

How to Mitigate CVE-2026-43055

Immediate Actions Required

  • Upgrade affected hosts to a Linux kernel build that includes commits 01f784f, 4eaff17, or ce54802.
  • Restrict network access to iSCSI portals and other LIO fabrics using firewall rules and network segmentation.
  • Disable the target_core_file backend on systems that do not require file-backed SCSI targets.

Patch Information

The upstream fix replaces the aio_cmd allocator with kzalloc_flex, zeroing ki_write_stream at allocation. Apply one of the upstream commits: Kernel Git Commit 01f784f, Kernel Git Commit 4eaff17, or Kernel Git Commit ce54802. Distribution-supplied stable kernels should be preferred over manual backports.

Workarounds

  • Unload the target_core_file module on hosts that do not require file-backed LIO targets: modprobe -r target_core_file.
  • Limit iSCSI portal exposure to trusted management networks using ACLs at the host and network layer.
  • Switch backing stores to target_core_iblock or target_core_pscsi where operationally feasible until patches are deployed.
bash
# Configuration example
# Verify kernel version and patch presence
uname -r

# Block external access to iSCSI portal (port 3260)
iptables -A INPUT -p tcp --dport 3260 -s <trusted_subnet> -j ACCEPT
iptables -A INPUT -p tcp --dport 3260 -j DROP

# Optionally disable the file backend if not required
rmmod target_core_file
echo 'blacklist target_core_file' > /etc/modprobe.d/disable-target_core_file.conf

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechLinux Kernel

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • NVD-CWE-noinfo
  • Vendor Resources
  • Kernel Git Commit 01f784f

  • Kernel Git Commit 4eaff17

  • Kernel Git Commit ce54802
  • Related CVEs
  • CVE-2026-43052: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-31724: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-31735: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-31734: Linux Kernel Privilege Escalation Flaw
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