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

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

CVE-2026-23387 is a use-after-free flaw in the Linux kernel's pinctrl cirrus driver that causes a double-put error. This post explains the technical details, affected versions, impact, and mitigation steps.

Published: March 27, 2026

CVE-2026-23387 Overview

A double-free vulnerability has been identified in the Linux kernel's pin controller subsystem, specifically within the Cirrus Logic CS42L43 audio codec driver. The flaw exists in the cs42l43_pin_probe() function where improper error handling leads to a reference count being decremented twice, potentially causing memory corruption or system instability.

Critical Impact

This vulnerability could allow local attackers to trigger a double-free condition, potentially leading to denial of service or memory corruption on systems using the affected Cirrus Logic audio hardware.

Affected Products

  • Linux kernel with pinctrl-cs42l43 driver enabled
  • Systems utilizing Cirrus Logic CS42L43 audio codec hardware
  • Linux kernel versions prior to the security patches

Discovery Timeline

  • 2026-03-25 - CVE CVE-2026-23387 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-23387

Vulnerability Analysis

The vulnerability stems from a reference counting error in the cs42l43_pin_probe() function within the pinctrl-cs42l43 driver. When devm_add_action_or_reset() fails, it automatically invokes the cleanup action (which decrements the reference count). However, the code also contains an explicit put operation in the error handling path, resulting in a double-put (double-free) condition.

This type of memory management bug is particularly dangerous in kernel space, as it can corrupt critical kernel data structures. When a reference count is decremented below zero, the kernel may prematurely free memory that is still in use elsewhere, or attempt to free already-freed memory, leading to undefined behavior.

Root Cause

The root cause is a misunderstanding of the devm_add_action_or_reset() API semantics. This function is designed to automatically call the registered cleanup action when it fails, eliminating the need for explicit cleanup in the error path. The original code incorrectly added an explicit reference count decrement after a failed call to this function, violating the API contract and creating the double-put condition.

Attack Vector

The vulnerability requires local access to a system with the affected Cirrus Logic CS42L43 hardware and driver loaded. An attacker would need to trigger the specific error condition in the probe function, potentially through driver binding/unbinding operations or by manipulating device state to cause devm_add_action_or_reset() to fail. While the attack surface is limited to local access and specific hardware configurations, successful exploitation could lead to kernel memory corruption.

Detection Methods for CVE-2026-23387

Indicators of Compromise

  • Kernel panic or oops messages referencing cs42l43_pin_probe or related pinctrl functions
  • Unexpected system crashes on devices with Cirrus Logic CS42L43 audio hardware
  • Memory corruption warnings in kernel logs related to the pinctrl subsystem

Detection Strategies

  • Monitor kernel logs for double-free warnings using KASAN (Kernel Address Sanitizer) if enabled
  • Audit loaded kernel modules for pinctrl-cs42l43 on systems with sensitive workloads
  • Implement integrity monitoring for kernel memory allocation patterns

Monitoring Recommendations

  • Enable kernel debugging features such as KASAN and KFENCE in development and testing environments
  • Configure alerting on kernel oops and panic events, particularly those involving audio or pinctrl subsystems
  • Review system stability logs for recurring crashes that may indicate exploitation attempts

How to Mitigate CVE-2026-23387

Immediate Actions Required

  • Apply the latest kernel security patches from your Linux distribution
  • If immediate patching is not possible, consider blacklisting the pinctrl-cs42l43 module if the hardware functionality is not critical
  • Review systems with Cirrus Logic CS42L43 audio hardware for priority patching

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability. The fix removes the redundant explicit put operation in the error path, correctly relying on devm_add_action_or_reset() to handle cleanup on failure. Multiple commits have been applied to stable kernel branches:

  • Kernel Git Commit 188ba34
  • Kernel Git Commit 1e04651
  • Kernel Git Commit 95b14ec
  • Kernel Git Commit ea07fcf
  • Kernel Git Commit fd5bed7

Workarounds

  • Blacklist the pinctrl-cs42l43 kernel module to prevent it from loading if the CS42L43 audio hardware is not required
  • Restrict local access to systems with affected hardware to trusted users only
  • Monitor for and respond to kernel stability issues that may indicate exploitation attempts
bash
# Blacklist the vulnerable module if audio functionality is not needed
echo "blacklist pinctrl-cs42l43" | sudo tee /etc/modprobe.d/blacklist-cs42l43.conf
sudo update-initramfs -u

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

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit 188ba34

  • Kernel Git Commit 1e04651

  • Kernel Git Commit 95b14ec

  • Kernel Git Commit ea07fcf

  • Kernel Git Commit fd5bed7
  • Related CVEs
  • CVE-2026-31475: Linux Kernel Use-After-Free Vulnerability

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

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

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