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

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

CVE-2026-23291 is a use-after-free vulnerability in the Linux kernel's NFC pn533 driver affecting USB interface reference handling. This article covers the technical details, affected versions, impact, and mitigation.

Published: March 27, 2026

CVE-2026-23291 Overview

A vulnerability has been identified in the Linux kernel's NFC pn533 driver that improperly handles USB interface reference counting during device disconnection. When the device is disconnected from the driver, a dangling reference count remains on the USB interface that was acquired during the probe callback, leading to improper resource management.

Critical Impact

This vulnerability can lead to resource leaks and potential system instability due to improper reference count handling in the Linux kernel's NFC subsystem.

Affected Products

  • Linux kernel with NFC pn533 driver enabled
  • Systems using PN533-based NFC USB devices
  • Linux kernel versions prior to the security patches

Discovery Timeline

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

Technical Details for CVE-2026-23291

Vulnerability Analysis

This vulnerability resides in the NFC pn533 driver within the Linux kernel. The driver is responsible for managing PN533-based NFC (Near Field Communication) USB devices. During the normal device lifecycle, the probe callback acquires a reference count on the USB interface to ensure the interface remains valid while the driver is using it.

The issue occurs during the disconnect phase when the device is removed or disconnected from the system. The driver fails to properly drop the USB interface reference that was grabbed during the probe callback, resulting in a "dangling" reference count. This improper reference counting can lead to resource leaks and potentially prevent the USB interface from being properly cleaned up.

Reference counting is a critical mechanism in the Linux kernel for managing the lifecycle of objects and ensuring resources are freed only when no longer in use. When reference counts are not properly managed, it can lead to memory leaks, use-after-free conditions, or prevent proper resource cleanup.

Root Cause

The root cause of this vulnerability is the missing call to properly release the USB interface reference in the disconnect handler of the pn533 driver. During probe, the driver increments the reference count on the USB interface, but the corresponding decrement is missing in the disconnect path. This creates a reference leak where the USB interface object maintains a higher reference count than expected, preventing proper cleanup.

Attack Vector

This vulnerability is classified with an unknown attack vector. It is primarily a resource management issue that manifests during device disconnection events. While exploitation requires local access or physical interaction with NFC USB devices, the vulnerability could potentially be triggered through:

  • Physical disconnection of PN533-based NFC USB devices
  • Software-initiated USB device removal or unbinding
  • Hot-plugging scenarios involving NFC hardware

The vulnerability does not appear to have remote exploitation capabilities, as it requires interaction with the local USB subsystem.

Detection Methods for CVE-2026-23291

Indicators of Compromise

  • Unexpected resource exhaustion related to USB interface objects
  • Kernel warnings or errors related to USB reference counting in system logs
  • Memory leaks observed in kernel memory usage over time with NFC device operations

Detection Strategies

  • Monitor kernel logs (dmesg) for warnings related to pn533 driver or USB reference counting issues
  • Track USB subsystem behavior during NFC device connect/disconnect cycles
  • Use kernel memory debugging tools like kmemleak to identify reference count leaks

Monitoring Recommendations

  • Enable kernel debugging options to track reference counting anomalies
  • Implement system monitoring for unusual memory growth patterns in USB subsystems
  • Review /sys/kernel/debug/usb/ for USB device state inconsistencies

How to Mitigate CVE-2026-23291

Immediate Actions Required

  • Apply the latest Linux kernel security patches that address this vulnerability
  • Update to a patched kernel version that includes the reference counting fix
  • If immediate patching is not possible, consider disabling the pn533 driver module if NFC functionality is not required

Patch Information

Multiple patches have been released to address this vulnerability in the Linux kernel stable branches. The fix ensures that the USB interface reference is properly dropped in the disconnect callback after the driver is done using it.

Relevant kernel commits:

  • Kernel Git Commit 00477cab
  • Kernel Git Commit 12133a48
  • Kernel Git Commit 4551d6ce
  • Kernel Git Commit 7398d657
  • Kernel Git Commit 7ff14eb0
  • Kernel Git Commit d1f6d20b

Workarounds

  • Disable the pn533 kernel module if NFC functionality is not required: modprobe -r pn533
  • Blacklist the pn533 module to prevent automatic loading: add blacklist pn533 to /etc/modprobe.d/blacklist.conf
  • Limit physical access to USB ports to reduce the risk of NFC device manipulation
bash
# Disable pn533 module temporarily
modprobe -r pn533

# Blacklist the module permanently (add to /etc/modprobe.d/blacklist.conf)
echo "blacklist pn533" >> /etc/modprobe.d/blacklist.conf

# Verify module is not loaded
lsmod | grep pn533

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 Update 1

  • Kernel Git Commit Update 2

  • Kernel Git Commit Update 3

  • Kernel Git Commit Update 4

  • Kernel Git Commit Update 5

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