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

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

CVE-2026-43328 is a use-after-free vulnerability in the Linux Kernel's cpufreq governor that causes a double free in the error path. This article covers the technical details, affected versions, impact, and mitigation.

Published: May 18, 2026

CVE-2026-43328 Overview

CVE-2026-43328 is a double free vulnerability [CWE-415] in the Linux kernel's cpufreq governor subsystem. The flaw exists in the cpufreq_dbs_governor_init() error path within the dynamic frequency scaling governor code. When kobject_init_and_add() fails, the cleanup logic invokes both kobject_put() and the explicit kfree(dbs_data) path, releasing the same memory twice. The kobject release callback cpufreq_dbs_data_release() already calls gov->exit(dbs_data) and kfree(dbs_data), so the subsequent direct free corrupts the kernel slab allocator state.

Critical Impact

Local attackers with low privileges can trigger memory corruption in the Linux kernel, potentially leading to privilege escalation, kernel crash, or arbitrary code execution in kernel context.

Affected Products

  • Linux Kernel (multiple stable branches)
  • Linux Kernel 5.1.6
  • Linux Kernel 7.0 release candidates (rc1 through rc6)

Discovery Timeline

  • 2026-05-08 - CVE-2026-43328 published to NVD
  • 2026-05-18 - Last updated in NVD database

Technical Details for CVE-2026-43328

Vulnerability Analysis

The vulnerability resides in the cpufreq governor initialization routine, specifically cpufreq_dbs_governor_init(). This function manages dynamic frequency scaling governors that adjust CPU clock speeds based on load. During initialization, the function allocates a dbs_data structure and registers it with the kernel object system via kobject_init_and_add().

When kobject_init_and_add() fails after partial initialization, the code calls kobject_put(&dbs_data->attr_set.kobj) to release the reference. The release callback cpufreq_dbs_data_release() is then invoked, which executes gov->exit(dbs_data) followed by kfree(dbs_data). However, the original error path continued to call gov->exit(dbs_data) and kfree(dbs_data) directly, freeing the same memory region twice.

Double free conditions in kernel memory allocators corrupt slab metadata. Attackers can leverage this corruption to achieve arbitrary write primitives or hijack kernel control flow.

Root Cause

The root cause is incorrect cleanup ordering in error handling. The patch keeps the direct kfree(dbs_data) only for the gov->init() failure path, which occurs before kobject_init_and_add(). After the kobject is initialized, cleanup must be delegated entirely to kobject_put() and the release callback. The original code violated this ownership model by performing manual cleanup after the kobject system had already taken ownership of the structure.

Attack Vector

Exploitation requires local access with low privileges. An attacker must trigger the specific error condition in kobject_init_and_add() during cpufreq governor initialization. This typically occurs through governor switching operations exposed via /sys/devices/system/cpu/cpufreq/ sysfs interfaces. Successful exploitation corrupts the kernel slab allocator, enabling heap manipulation techniques common in Linux kernel privilege escalation chains.

The vulnerability is described in prose because no public proof-of-concept code is available. See the Linux Kernel Commit da39ee6 for the authoritative patch details.

Detection Methods for CVE-2026-43328

Indicators of Compromise

  • Kernel panic or oops messages referencing cpufreq_dbs_data_release or cpufreq_dbs_governor_init in dmesg output
  • SLUB allocator warnings such as double free or corruption and kernel BUG at mm/slub.c
  • Unexpected processes spawning with elevated privileges following cpufreq governor changes
  • Anomalous writes to /sys/devices/system/cpu/cpufreq/policy*/scaling_governor

Detection Strategies

  • Monitor kernel ring buffer for slab corruption warnings and KASAN reports indicating use-after-free or double-free patterns
  • Enable CONFIG_SLUB_DEBUG and CONFIG_KASAN on test systems to identify exploitation attempts during validation
  • Audit auditd for unprivileged write operations to cpufreq sysfs governor entries from non-root processes

Monitoring Recommendations

  • Track kernel version inventory across Linux fleet using configuration management tooling
  • Enable kernel crash collection (kdump) to capture forensic state if exploitation triggers a panic
  • Correlate local privilege escalation indicators with cpufreq subsystem activity through centralized log analysis

How to Mitigate CVE-2026-43328

Immediate Actions Required

  • Apply the upstream Linux kernel patches referenced in the stable tree commits as soon as distribution updates are available
  • Inventory all Linux systems running affected kernel versions and prioritize patching multi-tenant and shared hosts
  • Restrict local user access on systems where the patch cannot be applied immediately

Patch Information

The fix preserves the direct kfree(dbs_data) only for the gov->init() failure path. After kobject_init_and_add() succeeds, cleanup is delegated entirely to kobject_put() through cpufreq_dbs_data_release(). Patches are available across stable branches in the following commits: Linux Kernel Commit 019ea28, Linux Kernel Commit 3bf9d02, Linux Kernel Commit 427d048, Linux Kernel Commit 56bc91e, Linux Kernel Commit 6dcf9d0, Linux Kernel Commit d2703b4, and Linux Kernel Commit da39ee6.

Workarounds

  • Restrict write permissions on /sys/devices/system/cpu/cpufreq/ sysfs entries to root only using udev rules
  • Disable runtime governor switching on production systems by setting a fixed governor at boot time via kernel command line parameter cpufreq.default_governor=performance
  • Apply distribution-specific live kernel patching where available to avoid reboot requirements

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

  • 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
  • Linux Kernel Commit 019ea28

  • Linux Kernel Commit 3bf9d02

  • Linux Kernel Commit 427d048

  • Linux Kernel Commit 56bc91e

  • Linux Kernel Commit 6dcf9d0

  • Linux Kernel Commit d2703b4

  • Linux Kernel Commit da39ee6
  • Related CVEs
  • 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

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