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
    • 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-71093

CVE-2025-71093: Linux Kernel e1000 Buffer Overflow Flaw

CVE-2025-71093 is a buffer overflow vulnerability in the Linux kernel e1000 driver that causes out-of-bounds memory access during frame processing. This article covers technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2025-71093 Overview

CVE-2025-71093 is an out-of-bounds read vulnerability in the Linux kernel's e1000 network driver. The vulnerability exists in the e1000_tbi_should_accept() function, which is called from the NAPI receive path (e1000_clean_rx_irq). When processing received network frames, the function reads the last byte of the frame to evaluate the TBI (Ten Bit Interface) workaround without first validating that the descriptor-reported length is within valid bounds. If the reported length is zero or exceeds the actual RX buffer size, this results in an out-of-bounds memory access that can hit unrelated slab objects.

Critical Impact

This vulnerability allows out-of-bounds memory reads in kernel space, potentially leading to information disclosure or system instability. The issue is triggered during normal network packet processing in interrupt context.

Affected Products

  • Linux kernel with e1000 network driver enabled
  • Systems using Intel PRO/1000 network interface cards
  • Multiple kernel stable branches prior to the security patches

Discovery Timeline

  • January 13, 2026 - CVE-2025-71093 published to NVD
  • January 13, 2026 - Last updated in NVD database

Technical Details for CVE-2025-71093

Vulnerability Analysis

The vulnerability occurs in the e1000 network driver's TBI workaround logic. The TBI (Ten Bit Interface) is a physical layer interface used in Gigabit Ethernet. The e1000 driver includes a workaround in e1000_tbi_should_accept() that examines the last byte of received frames to make acceptance decisions.

The problematic code pattern reads memory at position data[length - 1] without first validating that the length value from the RX descriptor is sensible. When a malformed or corrupted descriptor reports a zero length, the calculation length - 1 underflows, causing the driver to read from an invalid memory location. Similarly, if the reported length exceeds adapter->rx_buffer_len, the access goes beyond the allocated RX buffer.

KASAN (Kernel Address Sanitizer) reports confirm this is a slab-out-of-bounds read, with the buggy address located 1620 bytes beyond a 2048-byte kmalloc-2k slab object. The vulnerability is triggered from the network receive interrupt handler path, making it exploitable through specially crafted network traffic.

Root Cause

The root cause is missing input validation in the e1000_tbi_should_accept() function. The code unconditionally dereferences memory based on the descriptor-reported frame length:

c
u8 last_byte = *(data + length - 1);

This pattern assumes the length value is always valid and within the bounds of the allocated RX buffer. However, the descriptor length can be corrupted or intentionally manipulated, either through hardware bugs, memory corruption, or potentially through crafted network traffic that exploits edge cases in the hardware's frame length reporting.

Attack Vector

The vulnerability is triggered through the network receive path. An attacker with the ability to send network traffic to a vulnerable system could potentially craft packets that cause the e1000 hardware or driver to generate RX descriptors with invalid length values. The attack vector involves:

  1. Sending specially crafted network frames to a target system with an e1000 network interface
  2. The frames trigger processing through e1000_clean_rx_irq() in soft IRQ context
  3. When e1000_tbi_should_accept() is called with an invalid descriptor length, an out-of-bounds read occurs
  4. The memory read can access adjacent kernel slab objects, potentially leaking sensitive kernel memory or causing system instability

The KASAN stack trace shows the vulnerability being triggered during normal SSH traffic processing, indicating it can occur during legitimate network activity when certain edge conditions are met.

Detection Methods for CVE-2025-71093

Indicators of Compromise

  • KASAN warnings in kernel logs indicating slab-out-of-bounds access in e1000_tbi_should_accept()
  • Stack traces showing calls from e1000_clean_rx_irq to e1000_tbi_should_accept with memory access violations
  • System instability or kernel panics related to e1000 network driver operations
  • Unexpected memory corruption symptoms on systems using Intel PRO/1000 network adapters

Detection Strategies

  • Enable KASAN (Kernel Address Sanitizer) in kernel builds to detect out-of-bounds memory accesses
  • Monitor kernel logs for slab-out-of-bounds errors associated with the e1000 driver module
  • Implement network traffic monitoring for anomalous packet patterns targeting e1000-equipped systems
  • Use kernel debugging tools to track memory access patterns in the e1000 receive path

Monitoring Recommendations

  • Configure syslog monitoring for KASAN violation reports containing e1000_tbi_should_accept
  • Deploy endpoint detection and response (EDR) solutions capable of detecting kernel memory corruption events
  • Monitor for unusual network traffic patterns that may indicate exploitation attempts
  • Set up alerts for e1000 driver errors or unexpected network interface resets

How to Mitigate CVE-2025-71093

Immediate Actions Required

  • Apply the available kernel patches from the Linux kernel stable branches immediately
  • Consider disabling affected e1000 network interfaces if patching is not immediately possible
  • Review systems for signs of exploitation by checking kernel logs for KASAN warnings
  • Prioritize patching for systems with e1000 network adapters that handle untrusted network traffic

Patch Information

Multiple kernel patches have been released to address this vulnerability. The fix adds validation to reject frames early if the length is zero or if it exceeds adapter->rx_buffer_len. This preserves the TBI workaround semantics for valid frames while preventing memory access beyond the RX buffer bounds.

Kernel patches are available through the following commits:

  • Kernel Git Commit 26c8bebc
  • Kernel Git Commit 2c4c0c09
  • Kernel Git Commit 9c72a518
  • Kernel Git Commit ad7a2a45
  • Kernel Git Commit ee7c125f

Workarounds

  • If immediate patching is not feasible, consider replacing e1000 network interfaces with alternative network adapters using different drivers
  • Implement network-level filtering to reduce exposure to potentially malicious traffic
  • Use network segmentation to isolate systems with vulnerable e1000 interfaces from untrusted networks
  • Monitor affected systems closely while awaiting patch deployment
bash
# Check if e1000 driver is loaded on your system
lsmod | grep e1000

# View current kernel version to verify patch status
uname -r

# Monitor kernel logs for KASAN warnings
dmesg | grep -i "kasan\|e1000_tbi_should_accept"

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 Change

  • Kernel Git Commit Change

  • Kernel Git Commit Change

  • Kernel Git Commit Change

  • Kernel Git Commit Change
  • Related CVEs
  • CVE-2026-23448: Linux Kernel Buffer Overflow Vulnerability

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

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

  • CVE-2026-31402: 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