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

CVE-2026-23021: Linux Kernel Pegasus USB Memory Leak Flaw

CVE-2026-23021 is a memory leak flaw in the Linux kernel's Pegasus USB network driver that occurs during asynchronous register updates. This article covers the technical details, affected versions, and mitigation strategies.

Published: February 6, 2026

CVE-2026-23021 Overview

A memory leak vulnerability has been identified in the Linux kernel's Pegasus USB network driver, specifically in the update_eth_regs_async() function. When asynchronously writing to device registers, if usb_submit_urb() fails, the code fails to release resources that were allocated up to that point. This can lead to kernel memory exhaustion over time, particularly on systems where the affected USB network devices experience repeated connection issues.

Critical Impact

Systems using Pegasus USB-to-Ethernet adapters may experience gradual memory exhaustion due to unreleased resources when USB request block submissions fail, potentially leading to system instability or denial of service.

Affected Products

  • Linux kernel (net/usb/pegasus driver)
  • Systems utilizing ADMtek Pegasus or Pegasus II USB-to-Ethernet adapters
  • Multiple kernel versions prior to the security patches

Discovery Timeline

  • 2026-01-31 - CVE CVE-2026-23021 published to NVD
  • 2026-02-03 - Last updated in NVD database

Technical Details for CVE-2026-23021

Vulnerability Analysis

The vulnerability exists within the Pegasus USB network driver's asynchronous register update mechanism. The update_eth_regs_async() function allocates memory resources including URB (USB Request Block) structures and associated buffers for communicating with the USB device. When the function calls usb_submit_urb() to submit the request to the USB subsystem, a failure condition can occur due to various reasons such as device disconnection, resource constraints, or USB bus errors.

The flaw manifests because the error handling path in update_eth_regs_async() does not properly deallocate the memory that was allocated prior to the failed submission. This includes the URB structure itself and any control transfer buffers that were prepared for the asynchronous operation.

Root Cause

The root cause is improper resource cleanup in the error handling path of the update_eth_regs_async() function. When usb_submit_urb() returns an error, the function exits without calling the appropriate cleanup routines (usb_free_urb() and kfree()) to release the allocated URB and associated memory buffers. This constitutes a classic memory leak pattern where allocated resources are orphaned when an operation fails partway through execution.

Attack Vector

The attack vector for this vulnerability is local and requires the ability to trigger repeated failures of USB request submissions. An attacker with local access could potentially exploit this by:

  1. Repeatedly connecting and disconnecting a Pegasus USB network adapter
  2. Inducing USB bus errors that cause usb_submit_urb() to fail
  3. Creating conditions that exhaust USB subsystem resources, forcing submission failures

Each failed submission leaks a small amount of kernel memory. Over time, with sustained triggering of the vulnerability, this can lead to significant memory consumption and potential denial of service conditions on the affected system.

The vulnerability is exploited through physical device manipulation or by creating USB subsystem stress conditions that cause the asynchronous register update operations to fail during the submission phase.

Detection Methods for CVE-2026-23021

Indicators of Compromise

  • Gradual increase in kernel memory usage (slab allocations) on systems with Pegasus USB network adapters
  • Increasing count of URB-related memory objects in /proc/slabinfo
  • System logs showing repeated usb_submit_urb failures from the pegasus driver
  • Memory pressure warnings or OOM (Out of Memory) conditions on long-running systems

Detection Strategies

  • Monitor kernel memory allocations using tools like slabtop or /proc/meminfo for unusual growth patterns
  • Implement kernel tracing on USB subsystem calls to detect repeated URB submission failures
  • Review dmesg output for Pegasus driver error messages indicating USB communication issues
  • Use eBPF/BPF tracing to monitor the update_eth_regs_async() function for error returns

Monitoring Recommendations

  • Configure system monitoring to alert on sustained kernel memory growth
  • Set up log aggregation to capture and analyze Pegasus driver error messages
  • Implement automated kernel memory usage thresholds for systems using affected USB network devices
  • Deploy SentinelOne agents to monitor for anomalous system resource consumption patterns

How to Mitigate CVE-2026-23021

Immediate Actions Required

  • Apply the kernel patches from the official Linux kernel stable branches
  • If patching is not immediately possible, consider temporarily disabling or removing Pegasus USB network adapters from critical systems
  • Monitor affected systems for memory exhaustion symptoms
  • Plan maintenance windows for kernel updates on production systems

Patch Information

The Linux kernel development team has released patches to address this memory leak vulnerability. Multiple commits have been made to various kernel stable branches to ensure comprehensive coverage:

  • Kernel Commit 471dfb97599e
  • Kernel Commit 5397ea6d21c3
  • Kernel Commit 93f18eaa1903
  • Kernel Commit a40af9a2904a
  • Kernel Commit ac5d92d2826d
  • Kernel Commit afa27621a28a
  • Kernel Commit ce6eef731aba

Organizations should update to kernel versions containing these patches through their distribution's package management system.

Workarounds

  • Blacklist the pegasus kernel module if the USB network adapter is not required: add blacklist pegasus to /etc/modprobe.d/blacklist.conf
  • Use alternative USB network adapters that utilize different kernel drivers
  • Implement resource monitoring and automatic system restarts if memory thresholds are exceeded
  • Physically remove Pegasus USB network adapters from affected systems until patches can be applied
bash
# Configuration example
# Blacklist the pegasus module to prevent loading
echo "blacklist pegasus" | sudo tee /etc/modprobe.d/pegasus-blacklist.conf

# Unload the module if currently loaded
sudo modprobe -r pegasus

# Verify the module is not loaded
lsmod | grep pegasus

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Linux Kernel Commit 471dfb97599e

  • Linux Kernel Commit 5397ea6d21c3

  • Linux Kernel Commit 93f18eaa1903

  • Linux Kernel Commit a40af9a2904a

  • Linux Kernel Commit ac5d92d2826d

  • Linux Kernel Commit afa27621a28a

  • Linux Kernel Commit ce6eef731aba
  • Related CVEs
  • CVE-2026-31421: Linux Kernel cls_fw NULL Pointer Vulnerability

  • CVE-2026-31416: Linux Kernel Netfilter Header Vulnerability

  • CVE-2026-31417: Linux Kernel X.25 Overflow Vulnerability

  • CVE-2026-23457: Linux Kernel Integer Truncation 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