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

CVE-2026-23130: Linux Kernel Race Condition Vulnerability

CVE-2026-23130 is a race condition vulnerability in the Linux kernel ath12k Wi-Fi driver that causes deadlock during management frame flushing. This article covers technical details, affected versions, and mitigation.

Published: February 20, 2026

CVE-2026-23130 Overview

A deadlock vulnerability has been discovered in the Linux kernel's ath12k Wi-Fi driver that occurs during the flushing of management frames. The vulnerability arises from a race condition between the management frame transmission work item and the ath12k_mac_op_flush() function when attempting to flush pending frames.

The issue was introduced when a previous commit converted the management transmission work item into a wiphy work. Since wiphy work can only run under wiphy lock protection, a deadlock condition occurs when the flush process holds the wiphy lock while waiting for transmission completion, preventing the transmission work item from executing.

Critical Impact

This deadlock condition can cause Wi-Fi authentication and association failures, resulting in network connectivity issues for systems using Qualcomm Atheros ath12k-compatible wireless adapters.

Affected Products

  • Linux kernel with ath12k Wi-Fi driver
  • Systems using Qualcomm WCN7850 wireless adapters
  • Linux distributions with ath12k PCI wireless support

Discovery Timeline

  • 2026-02-14 - CVE CVE-2026-23130 published to NVD
  • 2026-02-18 - Last updated in NVD database

Technical Details for CVE-2026-23130

Vulnerability Analysis

The deadlock vulnerability occurs in the ath12k Wi-Fi driver's management frame handling code. When a management frame is queued for transmission and ath12k_mac_op_flush() is subsequently called to flush pending frames (particularly when the vif parameter is NULL), the process acquires the wiphy lock and waits for transmission completion.

However, the transmission work item, which was converted to a wiphy work in a previous commit, requires the same wiphy lock to execute. This creates a circular dependency where the flush operation holds the lock while waiting for transmission, but transmission cannot proceed because it cannot acquire the lock held by the flush operation.

From a user perspective, this manifests as authentication failures with error messages such as:

ath12k_pci 0000:08:00.0: failed to flush mgmt transmit queue, mgmt pkts pending 1

Users may observe repeated authentication attempts followed by association aborts with reason code 3 (DEAUTH_LEAVING).

Root Cause

The root cause is improper lock ordering introduced when the management transmission work item was converted to a wiphy work. The existing wiphy_work_flush() call in ath12k_mac_op_flush() was positioned to only handle cases where the vif parameter was non-NULL, leaving the NULL vif case unprotected against the deadlock condition.

The fix involves repositioning the wiphy_work_flush() call earlier in the execution path to ensure the queued work item is proactively run before the wiphy lock is held for extended periods, covering both NULL and non-NULL vif scenarios.

Attack Vector

This is a local denial of service vulnerability that can be triggered during normal Wi-Fi operations. The deadlock is triggered through normal system operations involving Wi-Fi management frame handling, specifically during authentication and association processes with access points.

The vulnerability does not require malicious intent to trigger—it can occur during routine Wi-Fi connectivity operations on affected systems with ath12k-compatible wireless hardware.

Detection Methods for CVE-2026-23130

Indicators of Compromise

  • Kernel log messages indicating failed management transmit queue flushes: failed to flush mgmt transmit queue, mgmt pkts pending
  • Repeated Wi-Fi authentication timeouts and retries in system logs
  • Association abort messages with reason code 3 (DEAUTH_LEAVING)
  • System unresponsiveness or hangs related to Wi-Fi operations
  • ath12k driver stack traces showing lock contention in kernel logs

Detection Strategies

  • Monitor kernel logs for ath12k driver error messages related to management frame queue flushing
  • Implement monitoring for Wi-Fi authentication failure patterns on systems with WCN7850 adapters
  • Check for kernel version and ath12k driver module version against patched versions
  • Monitor system responsiveness during Wi-Fi connectivity changes

Monitoring Recommendations

  • Configure syslog alerting for ath12k_pci error messages
  • Implement network monitoring to detect repeated authentication failures
  • Monitor kernel lockup detection mechanisms for deadlock-related warnings
  • Track system stability metrics on endpoints with ath12k wireless hardware

How to Mitigate CVE-2026-23130

Immediate Actions Required

  • Update the Linux kernel to a version containing the fix commits
  • Monitor systems with ath12k wireless adapters for authentication failures
  • Consider temporary use of wired connections on critical systems until patching is complete
  • Review kernel logs for evidence of the deadlock condition

Patch Information

The vulnerability has been resolved in the Linux kernel. The fix repositions the wiphy_work_flush() call in ath12k_mac_flush() to occur earlier in the execution path, ensuring the queued transmission work item is proactively run before the wiphy lock creates a deadlock scenario.

Patch commits are available:

  • Kernel Git Commit Details - Primary fix commit (06ac2aa13f70)
  • Kernel Git Commit Update - Additional commit (f88e9fc30a26)

The fix was tested on WCN7850 hw2.0 PCI with firmware WLAN.HMT.1.1.c5-00302-QCAHMTSWPL_V1.0_V2.0_SILICONZ-1.115823.3.

Workarounds

  • Use wired Ethernet connections as an alternative to Wi-Fi on affected systems
  • Disable the ath12k driver and use alternative wireless adapters where possible
  • Avoid triggering flush operations by minimizing Wi-Fi interface state changes
  • Consider using older kernel versions without the wiphy work conversion if the patch cannot be immediately applied
bash
# Check current kernel version for ath12k driver status
uname -r
# List loaded ath12k modules
lsmod | grep ath12k
# Check kernel logs for deadlock indicators
dmesg | grep -i "ath12k.*flush"

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

  • Vulnerability Details
  • TypeRace Condition

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Git Commit Update
  • Related CVEs
  • CVE-2026-23440: Linux Kernel Race Condition Vulnerability

  • CVE-2026-23434: Linux Kernel Race Condition Vulnerability

  • CVE-2026-23436: Linux Kernel Race Condition Vulnerability

  • CVE-2026-23463: Linux Kernel QBMAN Race Condition Flaw
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