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

CVE-2026-43414: Linux Kernel Use-After-Free Vulnerability

CVE-2026-43414 is a use-after-free flaw in the Linux kernel's qla2xxx SCSI driver that causes fcport double free errors. This article covers the technical details, affected kernel versions, security impact, and mitigation.

Published: May 18, 2026

CVE-2026-43414 Overview

CVE-2026-43414 is a double free vulnerability in the Linux kernel's qla2xxx SCSI driver, which supports QLogic Fibre Channel host bus adapters. The flaw resides in the qla24xx_els_dcmd_iocb() function, where the fcport structure can be freed twice during error handling. After kref_put() releases the final reference and triggers qla2x00_sp_release(), the registered sp->free callback (qla2x00_els_dcmd_sp_free()) invokes qla2x00_free_fcport() a second time. The condition corrupts kernel memory and can lead to privilege escalation or denial of service.

Critical Impact

A successful exploit allows attackers to corrupt kernel memory through a double free of the fcport structure, potentially resulting in arbitrary code execution in kernel context.

Affected Products

  • Linux kernel versions containing the unpatched qla2xxx SCSI driver
  • Systems using QLogic Fibre Channel host bus adapters with the qla24xx code path
  • Distributions shipping affected stable kernel branches prior to the fix commits

Discovery Timeline

  • 2026-05-08 - CVE-2026-43414 published to NVD
  • 2026-05-12 - Last updated in NVD database

Technical Details for CVE-2026-43414

Vulnerability Analysis

The qla2xxx driver handles Extended Link Service (ELS) commands through qla24xx_els_dcmd_iocb(). This function assigns qla2x00_els_dcmd_sp_free() as the cleanup callback by setting sp->free. The cleanup callback is responsible for releasing the fcport structure with qla2x00_free_fcport().

When an error occurs during command submission, the driver invokes qla2x00_sp_release(). This release path calls kref_put(), which drops the final reference on the service request and triggers the registered sp->free callback. The callback then frees fcport. The original error-handling code subsequently frees fcport a second time, producing a classic double free condition.

The vulnerability is categorized as Double Free, a memory corruption flaw that can be leveraged for arbitrary kernel memory writes when combined with heap manipulation primitives.

Root Cause

The root cause is duplicated ownership tracking of the fcport structure between the synchronous error path in qla24xx_els_dcmd_iocb() and the asynchronous cleanup callback registered via sp->free. Both paths assume responsibility for releasing the same allocation, and there is no flag or null assignment preventing the second free after kref_put() completes.

Attack Vector

Triggering the bug requires reaching the error path in qla24xx_els_dcmd_iocb() on a system using affected QLogic Fibre Channel hardware or driver code. Once the double free occurs, an attacker controlling subsequent slab allocations can manipulate kernel objects placed in the freed memory region. This primitive can be escalated to kernel code execution or used to crash the host, depending on slab cache reuse and the attacker's local access.

The vulnerability is described in the upstream commits referenced below. See the Linux Kernel Commit c0b7da13 and Linux Kernel Commit d48ea854 for the complete fix.

Detection Methods for CVE-2026-43414

Indicators of Compromise

  • Unexpected kernel panics or BUG: KASAN: double-free messages referencing qla2x00_free_fcport in dmesg output
  • Slab corruption warnings (SLUB: double free detected) tied to the qla2xxx driver
  • Repeated Fibre Channel ELS command failures preceding kernel instability

Detection Strategies

  • Enable Kernel Address Sanitizer (KASAN) on test systems to catch double free conditions in the SCSI subsystem
  • Audit installed kernel package versions against vendor advisories that backport the upstream fix commits
  • Correlate hardware error logs from Fibre Channel HBAs with kernel oops events to identify exploitation attempts

Monitoring Recommendations

  • Forward /var/log/kern.log and dmesg output to a centralized logging platform for anomaly detection on SCSI and qla2xxx subsystem messages
  • Monitor host uptime and unexplained reboots on storage and SAN-attached servers
  • Track unauthorized loading or modification of the qla2xxx kernel module via auditd rules on /lib/modules

How to Mitigate CVE-2026-43414

Immediate Actions Required

  • Apply the upstream kernel patches from commits c0b7da13a04b and d48ea85463f5 or update to a distribution kernel that includes the backport
  • Inventory systems using QLogic Fibre Channel HBAs and prioritize patching for SAN-attached storage hosts
  • Restrict local access on affected systems until the patched kernel is deployed

Patch Information

The fix removes the duplicate free of fcport in the error path of qla24xx_els_dcmd_iocb(), leaving cleanup exclusively to the sp->free callback after kref_put() releases the final reference. The patches are available at Linux Kernel Commit c0b7da13 and Linux Kernel Commit d48ea854. Apply vendor-provided kernel updates from your Linux distribution as soon as they become available.

Workarounds

  • Unload the qla2xxx module on systems that do not require Fibre Channel connectivity using modprobe -r qla2xxx
  • Blacklist the qla2xxx driver in /etc/modprobe.d/ on hosts without QLogic HBAs to prevent automatic loading
  • Limit local user access and tighten container escape boundaries on affected systems until patching completes
bash
# Blacklist the qla2xxx module on systems that do not require it
echo "blacklist qla2xxx" | sudo tee /etc/modprobe.d/blacklist-qla2xxx.conf
sudo update-initramfs -u
sudo reboot

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

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • Technical References
  • Linux Kernel Commit Change

  • Linux Kernel Commit Change
  • Related CVEs
  • CVE-2026-43328: Linux Kernel Use-After-Free Vulnerability

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

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

  • CVE-2026-43335: Linux Kernel Use-After-Free Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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