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

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

CVE-2026-22994 is a use-after-free vulnerability in the Linux kernel's BPF subsystem causing reference count leaks. This post explains its impact, affected versions, and mitigation steps.

Published: January 30, 2026

CVE-2026-22994 Overview

A reference count leak vulnerability has been identified in the Linux kernel's BPF subsystem, specifically within the bpf_prog_test_run_xdp() function. This flaw was discovered through syzbot automated testing, which reported a "waiting for sit0 to become free" error indicating improper network device reference management. The vulnerability stems from an error handling path that fails to properly release reference counts obtained during XDP program testing.

Critical Impact

This vulnerability can cause resource exhaustion and denial of service conditions by preventing network devices from being properly unregistered, leading to system instability.

Affected Products

  • Linux Kernel (versions with BPF XDP test run support)
  • Systems utilizing BPF programs with XDP frags support
  • Linux distributions shipping affected kernel versions

Discovery Timeline

  • 2026-01-23 - CVE CVE-2026-22994 published to NVD
  • 2026-01-26 - Last updated in NVD database

Technical Details for CVE-2026-22994

Vulnerability Analysis

The vulnerability exists in the BPF (Berkeley Packet Filter) subsystem's XDP (eXpress Data Path) testing infrastructure. When executing bpf_prog_test_run_xdp(), a reference count is obtained through xdp_convert_md_to_buff() to manage network device resources. Under normal operation, this reference is released by calling xdp_convert_buff_to_md().

The problem arises from error handling code introduced in commit 1c1949982524 which added frags support to bpf_prog_test_run_xdp(). The error handling path in this commit fails to call xdp_convert_buff_to_md() when certain error conditions occur, resulting in a leaked reference count on the network device.

This memory leak manifests as the kernel reporting "unregister_netdevice: waiting for sit0 to become free. Usage count = 2" when attempting to tear down network interfaces, as the leaked reference prevents the device from being properly freed.

Root Cause

The root cause is an incomplete error handling path in the BPF XDP test runner. When commit 1c1949982524 introduced frags support to bpf_prog_test_run_xdp(), it added new error conditions but failed to ensure that xdp_convert_buff_to_md() is called in all exit paths where xdp_convert_md_to_buff() had previously succeeded. This violates the reference counting contract established by commit ec94670fcb3b, which specified that references obtained by xdp_convert_md_to_buff() must be released by xdp_convert_buff_to_md().

Attack Vector

The vulnerability can be triggered by executing BPF programs that exercise the XDP test run functionality under specific error conditions. An attacker with the ability to load and run BPF programs could potentially exploit this to cause denial of service by:

  1. Repeatedly triggering the error path that leaks references
  2. Accumulating leaked reference counts on network devices
  3. Preventing network devices from being properly unregistered
  4. Eventually exhausting kernel memory resources or causing system instability

The attack requires local access and appropriate privileges to load BPF programs, though unprivileged BPF may be enabled on some systems.

Detection Methods for CVE-2026-22994

Indicators of Compromise

  • Kernel log messages containing "unregister_netdevice: waiting for [device] to become free"
  • Elevated reference counts on network interfaces that don't decrease over time
  • Network interfaces stuck in a pending removal state
  • Memory utilization gradually increasing without corresponding workload changes
  • BPF-related system calls showing unusual error patterns

Detection Strategies

  • Monitor kernel logs (dmesg/syslog) for "unregister_netdevice" warning messages
  • Implement alerting on repeated network device unregistration failures
  • Track BPF program load and test execution patterns for anomalous behavior
  • Use kernel tracing tools (ftrace, eBPF) to monitor bpf_prog_test_run_xdp() error paths

Monitoring Recommendations

  • Deploy kernel event monitoring to detect reference count leak patterns
  • Configure SentinelOne's Linux agent to alert on suspicious BPF program activity
  • Establish baselines for normal BPF test run operations and alert on deviations
  • Monitor system stability metrics including network interface states and memory utilization

How to Mitigate CVE-2026-22994

Immediate Actions Required

  • Update the Linux kernel to a patched version containing the fix commits
  • Review and restrict BPF program loading permissions using kernel.unprivileged_bpf_disabled sysctl
  • Monitor systems for signs of exploitation such as network device unregistration failures
  • Consider temporarily disabling BPF test run functionality if not required

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability. The fix ensures that xdp_convert_buff_to_md() is properly called in all error handling paths within bpf_prog_test_run_xdp(). The following kernel commits contain the fix:

  • Commit 368569bc546d
  • Commit 737be05a7657
  • Commit 98676ee71fd4
  • Commit ec69daabe452
  • Commit fb9ef40cccdb

Apply the appropriate patch for your kernel version through your Linux distribution's package manager or by building from updated kernel sources.

Workarounds

  • Disable unprivileged BPF access by setting kernel.unprivileged_bpf_disabled=1
  • Restrict BPF capabilities using seccomp filters or SELinux/AppArmor policies
  • Limit access to BPF test run functionality through capability controls (CAP_BPF, CAP_NET_ADMIN)
  • Implement resource limits and monitoring to detect and mitigate DoS conditions
bash
# Configuration example
# Disable unprivileged BPF to prevent non-root exploitation
echo 1 > /proc/sys/kernel/unprivileged_bpf_disabled

# Make the setting persistent across reboots
echo "kernel.unprivileged_bpf_disabled = 1" >> /etc/sysctl.d/99-bpf-security.conf

# Apply sysctl settings immediately
sysctl -p /etc/sysctl.d/99-bpf-security.conf

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

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

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