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-2024-26930

CVE-2024-26930: Linux Kernel Use-After-Free Vulnerability

CVE-2024-26930 is a use-after-free flaw in the Linux Kernel's qla2xxx SCSI driver causing double free of ha->vp_map pointer. This article covers technical details, affected versions, security impact, and mitigation.

Updated: January 22, 2026

CVE-2024-26930 Overview

CVE-2024-26930 is a double free vulnerability in the Linux kernel's qla2xxx SCSI driver. The vulnerability was identified through a Coverity scan which detected a potential risk of double freeing the ha->vp_map pointer. Specifically, the pointer was freed in qla2x00_mem_alloc() and subsequently freed again in qla2x00_mem_free(ha), creating a classic double free memory corruption condition.

Critical Impact

Local attackers with low privileges can exploit this double free vulnerability to potentially achieve high impact on confidentiality, integrity, and availability of affected Linux systems running the qla2xxx SCSI driver.

Affected Products

  • Linux Kernel (multiple versions)
  • Linux Kernel 6.9-rc1
  • Systems utilizing QLogic qla2xxx Fibre Channel HBA drivers

Discovery Timeline

  • 2024-05-01 - CVE-2024-26930 published to NVD
  • 2025-03-07 - Last updated in NVD database

Technical Details for CVE-2024-26930

Vulnerability Analysis

This vulnerability is classified as CWE-415 (Double Free), a memory corruption flaw that occurs when the same memory allocation is freed more than once. In the context of the qla2xxx driver, the ha->vp_map pointer undergoes improper memory management where it gets deallocated in the qla2x00_mem_alloc() function during an error handling path, and then deallocated again in qla2x00_mem_free(ha) during cleanup operations.

Double free vulnerabilities can lead to heap corruption, which may result in arbitrary code execution, denial of service through crashes, or other unpredictable behavior. The local attack vector requires an attacker to have existing access to the system with low-level privileges, but successful exploitation could elevate their capabilities significantly.

Root Cause

The root cause stems from inadequate pointer management in the qla2xxx driver's memory allocation and deallocation routines. When qla2x00_mem_alloc() encounters an error condition and frees ha->vp_map, it fails to set the pointer to NULL. Subsequently, when qla2x00_mem_free(ha) executes during cleanup, it attempts to free the same already-freed memory allocation because it has no way to determine the memory was previously deallocated.

Attack Vector

The vulnerability requires local access to the system with low privileges. An attacker could potentially trigger the vulnerable code path by manipulating SCSI driver operations or causing error conditions that lead to the memory management functions being called in a sequence that triggers the double free. The attack does not require user interaction.

The fix involves assigning NULL to the vp_map pointer after freeing it, as kfree() safely handles NULL pointers without performing any operation. This is a standard defensive programming practice to prevent double free vulnerabilities.

Detection Methods for CVE-2024-26930

Indicators of Compromise

  • Unexpected kernel panics or crashes related to the qla2xxx driver
  • Memory corruption errors in kernel logs involving heap operations
  • System instability on servers with QLogic Fibre Channel HBAs
  • Unusual kernel oops messages referencing qla2x00_mem_alloc or qla2x00_mem_free functions

Detection Strategies

  • Monitor kernel logs (dmesg, /var/log/kern.log) for qla2xxx driver errors or memory-related warnings
  • Implement kernel debugging tools such as KASAN (Kernel Address Sanitizer) to detect double free conditions
  • Use system monitoring to detect unexpected driver behavior or crashes
  • Review loaded kernel modules and verify qla2xxx driver version against patched releases

Monitoring Recommendations

  • Enable kernel audit logging for driver-related events
  • Configure alerting for kernel panic events and qla2xxx driver exceptions
  • Monitor system stability metrics on servers with QLogic HBAs
  • Implement centralized log collection to correlate potential exploitation attempts across infrastructure

How to Mitigate CVE-2024-26930

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the security fix
  • Review systems with QLogic qla2xxx Fibre Channel HBAs for vulnerability exposure
  • Prioritize patching on critical systems with local user access
  • Restrict local access to trusted users on vulnerable systems until patches are applied

Patch Information

The vulnerability has been addressed through multiple kernel patches that assign NULL to the vp_map pointer after freeing to prevent the double free condition. The following patches are available:

  • Kernel Patch 825d63164a2e
  • Kernel Patch b7deb675d67
  • Kernel Patch e288285d477
  • Kernel Patch f14cee7a882

Workarounds

  • Limit local access to systems running vulnerable kernel versions
  • Consider disabling the qla2xxx driver module if QLogic Fibre Channel functionality is not required
  • Implement strict access controls to prevent untrusted users from triggering driver operations
  • Monitor systems for signs of exploitation while awaiting kernel updates
bash
# Check current kernel version and qla2xxx driver status
uname -r
lsmod | grep qla2xxx

# If qla2xxx is not needed, it can be blacklisted temporarily
echo "blacklist qla2xxx" >> /etc/modprobe.d/blacklist-qla2xxx.conf

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.01%

  • 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-415
  • Vendor Resources
  • Kernel Patch 825d63164a2e

  • Kernel Patch b7deb675d67

  • Kernel Patch e288285d477

  • Kernel Patch f14cee7a882
  • Related CVEs
  • CVE-2026-31414: Linux Kernel Use-After-Free Vulnerability

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

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

  • CVE-2026-31419: 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