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

CVE-2026-43478: Linux Kernel RT1011 Codec Vulnerability

CVE-2026-43478 is a null pointer dereference flaw in the Linux kernel RT1011 audio codec that occurs when retrieving DAPM context. This article covers technical details, affected versions, and mitigation.

Published: May 17, 2026

CVE-2026-43478 Overview

CVE-2026-43478 is a NULL pointer dereference vulnerability in the Linux kernel's ALSA System on Chip (ASoC) subsystem. The flaw resides in the rt1011 codec driver, specifically in the rt1011_recv_spk_mode_put() function. The function used an incorrect helper to retrieve the Dynamic Audio Power Management (DAPM) context from a kcontrol object, which returns a NULL pointer. The fix replaces the incorrect lookup with snd_soc_component_to_dapm(), which retrieves the DAPM context from the audio component. Kernel maintainers resolved the issue through commits 30e4b229 and b10b2b15.

Critical Impact

A NULL pointer dereference in the ASoC rt1011 codec path can trigger a kernel oops, resulting in local denial of service on affected Linux systems.

Affected Products

  • Linux kernel versions containing the rt1011 ASoC codec driver prior to the patched commits
  • Systems using Realtek RT1011 speaker amplifier audio hardware
  • Distributions shipping pre-patch stable kernels

Discovery Timeline

  • 2026-05-13 - CVE-2026-43478 published to NVD
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-43478

Vulnerability Analysis

The vulnerability exists in the rt1011_recv_spk_mode_put() callback inside the sound/soc/codecs/rt1011.c driver. The function is invoked when userspace writes to a mixer control to change the speaker receive mode. The original code attempted to retrieve the DAPM context using a helper that derived the context from the kcontrol argument. That lookup path does not provide a valid DAPM context for this codec, returning NULL.

When the code subsequently dereferences the NULL DAPM pointer to read or update widget power state, the kernel triggers a NULL pointer dereference. On most configurations this generates a kernel oops, terminating the calling thread and potentially destabilizing the audio subsystem.

Root Cause

The root cause is incorrect API selection inside the codec driver. The mixer put callback received a kcontrol object but used a derivation helper that does not yield a valid DAPM context for the rt1011 component. The patch substitutes snd_soc_component_to_dapm(), which correctly resolves the DAPM context from the bound component pointer obtained via snd_soc_kcontrol_component().

Attack Vector

Exploitation requires local access to the system and the ability to write to ALSA mixer controls exposed by the rt1011 codec. An unprivileged user with permission on /dev/snd/controlC* nodes can invoke the affected control through amixer, alsactl, or direct ioctl calls against the control device. The result is a kernel-side NULL dereference and local denial of service. No remote attack path or privilege escalation primitive has been documented for this issue.

No verified public exploit code is available. The vulnerability mechanism is described in the upstream commit messages referenced below: Kernel Git Commit 30e4b229 and Kernel Git Commit b10b2b15.

Detection Methods for CVE-2026-43478

Indicators of Compromise

  • Kernel oops or BUG messages in dmesg referencing rt1011_recv_spk_mode_put or snd_soc_dapm functions on the call stack
  • Repeated audio subsystem crashes following writes to rt1011 mixer controls
  • Unexpected termination of ALSA control processes such as amixer or alsactl with kernel-side faults

Detection Strategies

  • Inventory running kernels and compare against the patched commit hashes 30e4b229 and b10b2b15 to identify unpatched hosts
  • Audit loaded kernel modules for the snd_soc_rt1011 driver on systems where it is not required by attached hardware
  • Monitor /var/log/kern.log and journald for Oops, general protection fault, or BUG: kernel NULL pointer dereference entries

Monitoring Recommendations

  • Forward kernel ring buffer and syslog data to a centralized logging platform for correlation of repeated audio-driver crashes
  • Alert on any unprivileged process invoking ALSA control ioctl calls in rapid succession on hosts running the affected codec driver
  • Track package and kernel update status across the Linux fleet to confirm timely deployment of stable kernel releases

How to Mitigate CVE-2026-43478

Immediate Actions Required

  • Apply the upstream stable kernel updates that include commits 30e4b229 and b10b2b15 to the rt1011 codec driver
  • Identify systems with Realtek RT1011 audio hardware and prioritize kernel patching on those hosts first
  • Restrict access to ALSA control device nodes on multi-user systems to limit which accounts can trigger codec mixer callbacks

Patch Information

The fix is published in the Linux stable tree. Review the patches at Kernel Git Commit 30e4b229 and Kernel Git Commit b10b2b15. Distribution kernels rebased on the affected stable branches should pick up the change automatically. Verify the running kernel version after update with uname -r and confirm the patch is present in the distribution changelog.

Workarounds

  • Unload the snd_soc_rt1011 module on systems that do not depend on the codec using modprobe -r snd_soc_rt1011
  • Blacklist the module by adding blacklist snd_soc_rt1011 to a file in /etc/modprobe.d/ where audio functionality is not required
  • Tighten permissions on /dev/snd/control* nodes via udev rules to restrict mixer access to trusted users
bash
# Configuration example
# Blacklist the affected codec module on systems that do not need it
echo 'blacklist snd_soc_rt1011' | sudo tee /etc/modprobe.d/cve-2026-43478.conf
sudo update-initramfs -u

# Verify the patched kernel is running
uname -r
dmesg | grep -i rt1011

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit 30e4b229

  • Kernel Git Commit b10b2b15
  • Related CVEs
  • CVE-2026-43493: Linux Kernel Crypto Pcrypt Vulnerability

  • CVE-2026-43343: Linux Kernel USB Gadget Vulnerability

  • CVE-2026-43307: Linux Kernel FIFO Read Overflow Vulnerability

  • CVE-2026-43352: Linux Kernel DMA Ring Abort 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