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-2025-71233

CVE-2025-71233: Linux Kernel PCI Endpoint DoS Vulnerability

CVE-2025-71233 is a denial of service vulnerability in the Linux kernel PCI endpoint subsystem that causes NULL pointer dereference. This article covers the technical details, affected versions, impact, and mitigation.

Published: February 20, 2026

CVE-2025-71233 Overview

A NULL pointer dereference vulnerability has been identified in the Linux kernel's PCI endpoint subsystem. The flaw exists in the asynchronous creation of configfs sub-groups, where a delayed work handler can lead to a NULL pointer dereference when the driver directory is removed before the work completes. This race condition can be triggered through rapid directory creation and removal operations in the configfs interface.

Critical Impact

Local attackers with access to the configfs interface can cause kernel crashes through NULL pointer dereference, leading to system instability and denial of service conditions.

Affected Products

  • Linux Kernel (multiple versions with PCI endpoint support)
  • Systems using PCI endpoint function test driver (pci_epf_test)
  • Kernel configurations with configfs enabled

Discovery Timeline

  • 2026-02-18 - CVE-2025-71233 published to NVD
  • 2026-02-19 - Last updated in NVD database

Technical Details for CVE-2025-71233

Vulnerability Analysis

This vulnerability affects the Linux kernel's PCI endpoint configfs implementation. The root issue lies in the asynchronous nature of sub-group creation when using the configfs_register_group() API. When a delayed work handler attempts to register a configfs group while the parent directory is being removed concurrently, the kernel dereferences a NULL pointer at address 0x0000000000000088.

The vulnerability is easily reproducible through simple shell commands that rapidly create and delete directories in the configfs PCI endpoint functions path. The kernel stack trace reveals the crash occurs in configfs_register_group() when called from the pci_epf_cfs_work() delayed work handler during process_one_work() execution.

Root Cause

The vulnerability stems from a race condition in the configfs sub-group registration mechanism. The configfs_register_group() API uses a delayed work handler for asynchronous group creation to avoid potential deadlocks. However, this approach creates a window where the parent directory can be removed while the work is still pending, resulting in a NULL pointer access when the work handler finally executes.

The fix replaces configfs_register_group() with configfs_add_default_group(), which handles group creation synchronously and does not suffer from the deadlock issues that necessitated the delayed work approach in the original implementation.

Attack Vector

The attack requires local access to the system with permissions to interact with the configfs interface at /sys/kernel/config/pci_ep/functions/. An attacker can exploit this vulnerability by rapidly creating and removing directories within the PCI endpoint function test configuration path.

The crash can be triggered with the following sequence of operations in the configfs directory:

  1. Navigate to /sys/kernel/config/pci_ep/functions/pci_epf_test
  2. Rapidly create and remove test directories in a loop
  3. The race condition between directory removal and the delayed work handler causes the NULL pointer dereference

Detection Methods for CVE-2025-71233

Indicators of Compromise

  • Kernel panic logs showing NULL pointer dereference at address 0x0000000000000088
  • Stack traces containing configfs_register_group, pci_epf_cfs_work, and process_one_work
  • System crashes occurring during PCI endpoint configuration operations
  • Unexpected kernel oops messages in /var/log/kern.log or dmesg output

Detection Strategies

  • Monitor kernel logs for NULL pointer dereference events related to configfs operations
  • Implement auditd rules to track access to /sys/kernel/config/pci_ep/functions/ directories
  • Deploy kernel crash dump analysis to identify exploitation attempts
  • Use kernel tracing tools to monitor pci_epf_cfs_work function execution

Monitoring Recommendations

  • Enable kernel crash dumps (kdump) to capture full system state during crashes
  • Configure syslog forwarding for kernel messages to centralized SIEM systems
  • Implement file integrity monitoring on configfs mount points
  • Set up alerts for repeated kernel NULL pointer dereference events

How to Mitigate CVE-2025-71233

Immediate Actions Required

  • Apply the kernel patches from the official Linux kernel git repository
  • Restrict access to configfs directories using appropriate filesystem permissions
  • Consider disabling the pci_epf_test module if not required in production environments
  • Monitor systems for signs of exploitation attempts while patches are being deployed

Patch Information

Multiple patches have been released to address this vulnerability across various kernel branches. The fix modifies the configfs sub-group creation to use configfs_add_default_group() instead of the asynchronous configfs_register_group() API.

Patches are available from the following kernel git commits:

  • Kernel Git Commit 24a253c3aa6d
  • Kernel Git Commit 5f609b3bffd4
  • Kernel Git Commit 73cee890adaf
  • Kernel Git Commit 8cb905eca739
  • Kernel Git Commit d9af3cf58bb4
  • Kernel Git Commit fa9fb38f5fe9

Workarounds

  • Restrict access to the configfs PCI endpoint interface to trusted administrators only
  • Unload or blacklist the pci_epf_test kernel module if not required for system operation
  • Implement mandatory access control policies (SELinux/AppArmor) to limit configfs access
  • Monitor and rate-limit directory operations in the PCI endpoint configfs path
bash
# Configuration example
# Blacklist the pci_epf_test module if not needed
echo "blacklist pci_epf_test" >> /etc/modprobe.d/blacklist-pci-epf.conf

# Restrict configfs access permissions
chmod 700 /sys/kernel/config/pci_ep/functions/

# Verify module is not loaded
lsmod | grep pci_epf_test

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update
  • Related CVEs
  • CVE-2026-31418: Linux Kernel Netfilter IPset DoS Flaw

  • CVE-2026-31420: Linux Kernel Bridge MRP DoS Vulnerability

  • CVE-2026-31415: Linux Kernel IPv6 DoS Vulnerability

  • CVE-2026-31424: Linux Kernel Netfilter DoS 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