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

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

CVE-2026-43126 is a use-after-free vulnerability in the Linux kernel ALSA OSS mixer layer that could lead to unauthorized memory access. This article covers the technical details, affected versions, and mitigation steps.

Published: May 7, 2026

CVE-2026-43126 Overview

CVE-2026-43126 is a Linux kernel vulnerability in the Advanced Linux Sound Architecture (ALSA) Open Sound System (OSS) mixer compatibility layer. The OSS mixer code calls kcontrol operations individually, and pending calls were not consistently caught when the underlying sound card was disconnected. This gap creates a potential use-after-free (UAF) condition when userspace continues issuing mixer ioctls while the device is being torn down. The upstream fix adds card disconnection checkpoints at each entry point of OSS mixer access, guarded by an rwsem taken just before the check.

Critical Impact

Local userspace processes interacting with /dev/mixer during sound card removal could trigger a use-after-free in kernel memory, leading to kernel instability or potential privilege escalation.

Affected Products

  • Linux kernel ALSA OSS mixer subsystem (sound/core/oss/mixer_oss.c)
  • Stable kernel branches receiving the backports referenced in the four upstream commits
  • Distributions shipping affected kernel versions prior to applying the fix

Discovery Timeline

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

Technical Details for CVE-2026-43126

Vulnerability Analysis

The vulnerability resides in the ALSA OSS mixer compatibility layer, which exposes legacy /dev/mixer interfaces to userspace. When applications invoke mixer ioctls, the OSS layer dispatches calls to the underlying ALSA kcontrol operations one at a time. During sound card disconnection, in-flight or pending operations were not always synchronized with the teardown path. This race window allowed mixer accesses to proceed against state that had been or was being released.

The upstream resolution adds explicit card disconnect checkpoints at every entry point into the OSS mixer code. The rwsem is acquired immediately before the disconnect check, ensuring that the remainder of the access path executes under a consistent view of the card's lifecycle state. Once the card is marked disconnected, mixer operations return early instead of touching freed structures.

Root Cause

The root cause is missing lifecycle synchronization between the OSS mixer access paths and the card disconnect routine. Without per-entry-point disconnect checks under the rwsem, individual kcontrol op calls could reference state that had already been torn down, producing a use-after-free condition.

Attack Vector

Exploitation requires local access with permission to open the OSS mixer device node. An attacker triggers concurrent mixer ioctls while the underlying sound card is disconnected, for example through hot-unplug of a USB audio device or module unload. The race window is narrow but reachable from unprivileged local users on systems where the OSS compatibility layer is enabled.

No public proof-of-concept code is available. Refer to the upstream kernel commits (084d5d4, 8c097cf, ae583f1, e6645e6) for the exact code paths protected by the new checkpoints.

Detection Methods for CVE-2026-43126

Indicators of Compromise

  • Kernel oops or KASAN: use-after-free reports referencing functions in sound/core/oss/mixer_oss.c.
  • Unexpected kernel crashes correlated with USB audio device disconnect events or snd_* module unloads.
  • Repeated ioctl activity on /dev/mixer* from unprivileged processes during device teardown.

Detection Strategies

  • Enable Kernel Address Sanitizer (KASAN) on test kernels to surface use-after-free reads and writes in the ALSA OSS mixer path.
  • Audit dmesg for stack traces involving snd_mixer_oss_* symbols following audio device removal.
  • Monitor process telemetry for unprivileged binaries opening /dev/mixer and issuing mixer ioctls in tight loops.

Monitoring Recommendations

  • Track installed kernel versions across the fleet and flag hosts running unpatched kernels with ALSA OSS emulation enabled.
  • Alert on kernel panics or oops events forwarded from syslog or journald to centralized logging.
  • Correlate USB audio hot-unplug events with subsequent kernel error messages to identify race-condition triggers.

How to Mitigate CVE-2026-43126

Immediate Actions Required

  • Apply the upstream kernel patches referenced in the stable tree commits as soon as vendor-built packages are available.
  • Inventory systems that load the OSS mixer compatibility module (snd_mixer_oss) and prioritize patching those hosts.
  • Restrict local access on multi-user systems where untrusted users can reach /dev/mixer device nodes.

Patch Information

The fix is committed across the stable Linux kernel branches in commits 084d5d4, 8c097cf, ae583f1, and e6645e6. The change adds card disconnect checkpoints at each OSS mixer entry point, with the rwsem acquired immediately before the check. Upgrade to a distribution kernel that incorporates these commits.

Workarounds

  • Unload the snd_mixer_oss module on systems that do not require legacy OSS mixer compatibility: modprobe -r snd_mixer_oss.
  • Blacklist OSS emulation modules where ALSA-native interfaces are sufficient for all installed audio applications.
  • Tighten permissions on /dev/mixer* device nodes to restrict access to trusted users and groups only.
bash
# Configuration example: blacklist OSS mixer emulation until patched kernel is deployed
echo 'blacklist snd_mixer_oss' | sudo tee /etc/modprobe.d/disable-oss-mixer.conf
sudo modprobe -r snd_mixer_oss 2>/dev/null || true

# Verify the module is not loaded
lsmod | grep -i snd_mixer_oss

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

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Git Commit 8c097cf

  • Kernel Git Commit ae583f1

  • Kernel Git Commit e6645e6
  • Related CVEs
  • CVE-2026-31749: Linux Kernel Use-After-Free Vulnerability

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

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

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