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

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

CVE-2026-23281 is a use-after-free flaw in the Linux kernel libertas WiFi driver that causes memory corruption during timer cleanup. This article covers the technical details, affected versions, and mitigation strategies.

Published: March 27, 2026

CVE-2026-23281 Overview

A use-after-free vulnerability has been identified in the Linux kernel's Libertas WiFi driver within the lbs_free_adapter() function. The vulnerability occurs due to improper timer deletion handling during the adapter cleanup process. The function uses timer_delete() (non-synchronous) for both command_timer and tx_lockup_timer before freeing the associated memory structure, which can lead to accessing freed memory if a timer callback is still executing.

Critical Impact

If a timer callback (lbs_cmd_timeout_handler or lbs_tx_lockup_handler) is executing when lbs_free_adapter() is called, the callback will access freed memory after lbs_cfg_free() frees the containing structure, resulting in use-after-free violations affecting priv->driver_lock, priv->cur_cmd, priv->dev, and other critical fields.

Affected Products

  • Linux Kernel (Libertas WiFi Driver)
  • Systems using Marvell Libertas-based WiFi adapters
  • Various Linux kernel stable branches

Discovery Timeline

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

Technical Details for CVE-2026-23281

Vulnerability Analysis

This use-after-free vulnerability exists in the Libertas WiFi driver's adapter cleanup path. The root issue lies in the difference between timer_delete() and timer_delete_sync() functions. When lbs_free_adapter() is called, it attempts to cancel two active timers: command_timer and tx_lockup_timer. However, using timer_delete() does not guarantee that any currently executing timer callback has completed before returning.

The race condition window exists between the timer callback accessing various private structure fields (priv->driver_lock, priv->cur_cmd, priv->dev) and the subsequent call to lbs_cfg_free() which deallocates the containing structure. If the timer callback is mid-execution when the memory is freed, subsequent accesses within the callback will reference freed memory, potentially leading to kernel crashes, memory corruption, or exploitation scenarios.

Root Cause

The vulnerability was introduced in commit 8f641d93c38a ("libertas: detect TX lockups and reset hardware") where del_timer() was used instead of del_timer_sync() in the cleanup path. The command_timer has had this same synchronization issue since the driver was first written. The correct fix requires using timer_delete_sync() (or del_timer_sync()) to ensure any running timer callback has completed before the function returns and memory deallocation proceeds.

Attack Vector

The attack vector for this vulnerability involves triggering a race condition during the WiFi adapter cleanup process. An attacker would need to:

  1. Initiate adapter removal or driver unload while timer callbacks are active
  2. Time the attack to ensure timer callbacks are executing during the cleanup window
  3. Exploit the use-after-free condition when the callback accesses deallocated memory

The vulnerability requires local access and specific timing conditions to exploit. The timer callbacks access critical kernel structures including priv->driver_lock (spinlock), priv->cur_cmd (current command pointer), and priv->dev (network device pointer). Corrupting these during a use-after-free could allow kernel memory manipulation.

The fix replaces the non-synchronous timer_delete() calls with synchronous timer_delete_sync() calls, ensuring all timer callbacks have completed execution before memory deallocation occurs.

Detection Methods for CVE-2026-23281

Indicators of Compromise

  • Kernel oops or panic messages referencing the Libertas driver (lbs_cmd_timeout_handler or lbs_tx_lockup_handler)
  • KASAN (Kernel Address Sanitizer) reports indicating use-after-free in Libertas driver code
  • Unexpected system crashes during WiFi adapter removal or driver unload operations
  • Memory corruption indicators in kernel logs near Libertas WiFi driver code paths

Detection Strategies

  • Enable KASAN (Kernel Address Sanitizer) to detect use-after-free violations at runtime
  • Monitor kernel logs for Libertas driver-related crashes or warnings during adapter cleanup
  • Implement kernel debugging with CONFIG_DEBUG_TIMERS to identify timer synchronization issues
  • Use static analysis tools to audit timer deletion patterns in kernel drivers

Monitoring Recommendations

  • Configure syslog monitoring for kernel panic and oops messages related to Libertas driver
  • Deploy kernel crash dump analysis to identify potential exploitation attempts
  • Monitor for unusual WiFi adapter removal patterns that could indicate exploitation attempts

How to Mitigate CVE-2026-23281

Immediate Actions Required

  • Update to a patched Linux kernel version containing the synchronous timer deletion fix
  • If immediate patching is not possible, avoid unloading the Libertas WiFi driver module on affected systems
  • Review systems using Marvell Libertas-based WiFi adapters for potential exposure
  • Monitor kernel logs for any signs of timer-related crashes in the Libertas driver

Patch Information

The Linux kernel maintainers have released patches across multiple stable branches. The fix replaces timer_delete() calls with timer_delete_sync() in the lbs_free_adapter() function to ensure proper synchronization during cleanup. Patches are available through the following kernel git commits:

  • Kernel Git Commit 03cc8f90d053
  • Kernel Git Commit 3c5c818c78b0
  • Kernel Git Commit 3f9dec4a6d95
  • Kernel Git Commit a9f55b14486
  • Kernel Git Commit d0155fe68f31
  • Kernel Git Commit ed7d30f90b77

Workarounds

  • Avoid removing or unloading the Libertas WiFi driver module (libertas) while the system is under load
  • Blacklist the Libertas driver module on systems where this WiFi hardware is not actively used
  • Consider using alternative WiFi adapters that do not rely on the vulnerable Libertas driver
bash
# Blacklist the Libertas driver if not needed
echo "blacklist libertas" >> /etc/modprobe.d/blacklist-libertas.conf
echo "blacklist libertas_sdio" >> /etc/modprobe.d/blacklist-libertas.conf
echo "blacklist libertas_spi" >> /etc/modprobe.d/blacklist-libertas.conf
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 Change

  • Kernel Git Commit Change

  • Kernel Git Commit Change

  • Kernel Git Commit Change

  • Kernel Git Commit Change

  • Kernel Git Commit Change
  • 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