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

CVE-2025-71095: Linux Kernel Buffer Overflow Vulnerability

CVE-2025-71095 is a buffer overflow vulnerability in the Linux kernel's STMMAC network driver that causes crashes during zero copy XDP_TX operations. This article covers technical details, affected systems, and patches.

Updated: January 22, 2026

CVE-2025-71095 Overview

CVE-2025-71095 is a memory type confusion vulnerability in the Linux kernel's stmmac network driver that causes a kernel crash when executing zero copy XDP_TX actions. The vulnerability occurs because the stmmac_xdp_xmit_back() function fails to properly check the memory type of xdp_buff structures, leading to invalid DMA mappings and kernel panics.

Critical Impact

This vulnerability can cause a complete kernel panic and system crash during XDP packet processing operations, resulting in denial of service conditions on affected Linux systems.

Affected Products

  • Linux kernel with stmmac network driver
  • Systems using XDP (eXpress Data Path) with zero copy mode
  • Linux kernel versions prior to the security patches

Discovery Timeline

  • 2026-01-13 - CVE CVE-2025-71095 published to NVD
  • 2026-01-13 - Last updated in NVD database

Technical Details for CVE-2025-71095

Vulnerability Analysis

The vulnerability exists in the stmmac network driver's handling of XDP_TX actions when operating in zero copy mode. When an XDP program returns an XDP_TX action, the driver converts the xdp_buff structure to an xdp_frame using xdp_convert_buff_to_frame(). The resulting xdp_frame inherits its memory type from the source xdp_buff.

For page pool-based xdp_buff structures, the resulting xdp_frame has memory type MEM_TYPE_PAGE_POOL. However, for zero copy XSK (AF_XDP socket) pool-based xdp_buff structures, the resulting xdp_frame has memory type MEM_TYPE_PAGE_ORDER0. The critical flaw is that stmmac_xdp_xmit_back() does not check the actual memory type and unconditionally treats all frames as page pool type, leading to invalid DMA synchronization operations.

This memory type confusion causes the kernel to attempt DMA operations on invalid memory addresses, as evidenced by the crash attempting to access virtual address fffeffff80000000, resulting in a fatal kernel panic during interrupt handling.

Root Cause

The root cause is missing memory type validation in the stmmac_xdp_xmit_back() function. The function assumes all xdp_frame structures originate from page pool allocations and uses page pool-specific DMA synchronization routines. When processing frames from XSK zero copy buffers with MEM_TYPE_PAGE_ORDER0, the incorrect memory handling path is taken, causing invalid pointer dereferences during DMA cache operations in dcache_clean_poc and __dma_sync_single_for_device.

Attack Vector

The vulnerability is triggered through normal XDP packet processing operations when using AF_XDP sockets in zero copy mode. The attack vector requires local access to configure XDP programs and AF_XDP sockets on the affected network interface. The crash occurs during the NAPI poll routine when the driver attempts to transmit packets via XDP_TX action.

The crash trace shows the failure path:

  • stmmac_napi_poll_rxtx processes received packets
  • __stmmac_xdp_run_prog executes the XDP program returning XDP_TX
  • stmmac_xdp_xmit_xdpf attempts to transmit the frame
  • __dma_sync_single_for_device fails during DMA synchronization
  • dcache_clean_poc triggers the fatal page fault

Detection Methods for CVE-2025-71095

Indicators of Compromise

  • Kernel panic messages containing "Unable to handle kernel paging request" with addresses in the fffeffff80000000 range
  • Crash traces showing stmmac_xdp_xmit_xdpf and __dma_sync_single_for_device in the call stack
  • System instability when running XDP programs with AF_XDP zero copy mode on stmmac network interfaces

Detection Strategies

  • Monitor kernel logs for oops messages referencing dcache_clean_poc or __dma_sync_single_for_device
  • Implement crash dump analysis to identify stmmac XDP-related kernel panics
  • Track XDP program usage on systems with stmmac network drivers

Monitoring Recommendations

  • Enable kernel crash dumps to capture diagnostic information when panics occur
  • Monitor system uptime and unexpected reboots on systems using stmmac drivers with XDP
  • Review dmesg logs for stmmac driver errors or warnings related to DMA operations

How to Mitigate CVE-2025-71095

Immediate Actions Required

  • Apply the latest kernel security patches from the Linux kernel stable tree
  • Disable XDP zero copy mode on stmmac interfaces until patches are applied
  • Consider switching to XDP copy mode as a temporary workaround

Patch Information

The Linux kernel team has released patches to fix this vulnerability. The fix adds proper memory type checking in stmmac_xdp_xmit_back() to correctly handle both page pool and XSK zero copy buffer types. Multiple kernel stable branches have received patches:

  • Kernel Git Commit 3f78232
  • Kernel Git Commit 45ee046
  • Kernel Git Commit 4d0ceb7
  • Kernel Git Commit 5e59887
  • Kernel Git Commit a48e232

Workarounds

  • Avoid using AF_XDP sockets in zero copy mode with stmmac network interfaces
  • Use XDP programs in copy mode (XDP_FLAGS_SKB_MODE) instead of zero copy mode
  • If zero copy XDP is required, consider using alternative network drivers that properly handle memory type checking

The vulnerability fix involves checking the xdp_buff memory type in stmmac_xdp_xmit_back() before processing XDP_TX actions. Organizations should prioritize kernel updates on systems actively using XDP with stmmac network interfaces to prevent potential denial of service conditions.

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

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

  • Kernel Git Commit 45ee046

  • Kernel Git Commit 4d0ceb7

  • Kernel Git Commit 5e59887

  • Kernel Git Commit a48e232
  • Related CVEs
  • CVE-2026-31449: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-31512: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-31438: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-31450: Linux Kernel Buffer Overflow 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