A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-43204

CVE-2026-43204: Linux Kernel ASoC Q6ASM DoS Vulnerability

CVE-2026-43204 is a denial of service vulnerability in the Linux kernel ASoC Q6ASM component caused by improper handling of DSP responses for closed streams. This article covers technical details, impact, and mitigation.

Published: May 7, 2026

CVE-2026-43204 Overview

CVE-2026-43204 is a Linux kernel vulnerability in the Qualcomm ASoC (ALSA System on Chip) q6asm audio driver. The flaw stems from improper handling of Digital Signal Processor (DSP) responses arriving after a data stream has been closed. A prior fix in commit a354f030dbce attempted to ignore these late responses, but the responses were still processed, leading to system lockups. The resolution unconditionally drops all DSP responses associated with closed data streams.

Critical Impact

Improper handling of late DSP responses in the Qualcomm q6asm audio driver causes kernel lockups on affected Linux systems using Qualcomm audio hardware.

Affected Products

  • Linux kernel (mainline) with Qualcomm ASoC q6asm driver enabled
  • Qualcomm-based platforms relying on the Q6 Audio Stream Manager subsystem
  • Distributions shipping kernels containing commit a354f030dbce without the subsequent fix

Discovery Timeline

  • 2026-05-06 - CVE-2026-43204 published to NVD
  • 2026-05-06 - Last updated in NVD database

Technical Details for CVE-2026-43204

Vulnerability Analysis

The vulnerability resides in the Qualcomm q6asm (Q6 Audio Stream Manager) component of the Linux kernel ASoC subsystem. The q6asm driver communicates with the Qualcomm DSP using asynchronous command and response messaging. When a userspace audio stream is closed, the kernel must reconcile any in-flight DSP responses that arrive after teardown begins.

A previous patch, commit a354f030dbce ("ASoC: qcom: q6asm: handle the responses after closing"), introduced logic intended to ignore responses received after stream closure. However, the responses continued to be processed by the response handler. This caused the driver to operate on stale or invalid stream state, resulting in kernel lockups that block further audio operations and degrade overall system stability.

The fix unconditionally drops all DSP responses tied to closed data streams, ensuring the response handler exits early before touching freed or transitioning state.

Root Cause

The root cause is incomplete response filtering after stream closure. The original mitigation checked stream state but failed to short-circuit the response handler, allowing post-close callbacks to access state that was no longer valid. This is a logic flaw in resource lifecycle management within an asynchronous DSP messaging path.

Attack Vector

This is a denial-of-service condition reachable through normal audio stream open/close sequences on Qualcomm hardware. Triggering the lockup requires interaction with the audio subsystem on affected platforms. No remote attack vector or code execution path is described in the kernel commit message. Refer to the upstream kernel commits for technical details: Kernel Git Commit 3249251e and Kernel Git Commit 8a066a81.

Detection Methods for CVE-2026-43204

Indicators of Compromise

  • Kernel soft lockup or hung task warnings referencing q6asm or ASoC code paths in dmesg output
  • Audio subsystem becoming unresponsive on Qualcomm-based Linux devices after repeated stream open/close cycles
  • Stalled processes blocked on audio device file descriptors with no progress

Detection Strategies

  • Audit running kernel versions across Qualcomm-based Linux fleets and compare against the fixed commits referenced above
  • Monitor kernel logs for BUG: soft lockup or INFO: task hung events involving the ASoC q6asm callstack
  • Track package inventory of Linux distributions to identify systems shipping the unpatched q6asm driver

Monitoring Recommendations

  • Forward kernel ring buffer messages to a centralized log platform for correlation of lockup events
  • Establish alerts on repeated audio service crashes or restarts on Qualcomm hardware
  • Include kernel version metadata in endpoint inventory to streamline patch verification

How to Mitigate CVE-2026-43204

Immediate Actions Required

  • Identify Linux systems running Qualcomm ASoC audio with vulnerable kernel versions
  • Apply the upstream stable kernel update containing the fix to drop DSP responses for closed streams
  • Reboot systems after kernel update to ensure the patched q6asm module is loaded

Patch Information

The vulnerability is resolved by the upstream Linux kernel commits referenced in the NVD entry: Kernel Git Commit 3249251e and Kernel Git Commit 8a066a81. Apply the corresponding stable kernel release from your Linux distribution.

Workarounds

  • Where patching is delayed, avoid workloads that rapidly open and close audio streams on affected Qualcomm platforms
  • Disable or unload the q6asm module on systems where audio functionality is not required
  • Restrict access to audio device nodes to trusted local users to limit DoS exposure
bash
# Verify running kernel version and check for the fixed commit
uname -r

# On systems using package managers, update the kernel
# Debian/Ubuntu
sudo apt update && sudo apt install --only-upgrade linux-image-$(uname -r)

# Fedora/RHEL
sudo dnf update kernel

# Reboot to load the patched kernel
sudo reboot

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

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

  • Kernel Git Commit Change
  • Related CVEs
  • CVE-2026-46206: Linux Kernel batman-adv DoS Vulnerability

  • CVE-2026-43492: Linux Kernel MPI Integer Underflow DoS

  • CVE-2026-43491: Linux Kernel QRTR NS DoS Vulnerability

  • CVE-2026-43329: Linux Kernel Netfilter DoS 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