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

CVE-2025-21680: Linux Kernel Buffer Overflow Vulnerability

CVE-2025-21680 is a buffer overflow vulnerability in Linux Kernel's pktgen component that causes out-of-bounds array access. This article covers the technical details, affected versions, impact, and mitigation.

Updated: January 22, 2026

CVE-2025-21680 Overview

CVE-2025-21680 is a high-severity out-of-bounds array access vulnerability in the Linux kernel's pktgen (packet generator) module. The vulnerability exists in the get_imix_entries function within net/core/pktgen.c, where an incorrect boundary check allows a local attacker to pass a sufficient number of imix entries that leads to invalid access beyond the bounds of the pkt_dev->imix_entries array. This flaw was discovered by the Linux Verification Center (linuxtesting.org) using the SVACE static analysis tool.

Critical Impact

Local attackers with low privileges can exploit this out-of-bounds access vulnerability to potentially achieve high impact on confidentiality, integrity, and availability of the affected system.

Affected Products

  • Linux Kernel versions prior to patched releases
  • Linux Kernel 6.13-rc1 through 6.13-rc7
  • Systems running vulnerable kernel versions with the pktgen module enabled

Discovery Timeline

  • 2025-01-31 - CVE-2025-21680 published to NVD
  • 2025-11-03 - Last updated in NVD database

Technical Details for CVE-2025-21680

Vulnerability Analysis

The vulnerability resides in the get_imix_entries function in the Linux kernel's packet generator (pktgen) networking subsystem. The pkt_dev->imix_entries array is defined as type imix_pkt [20], meaning it can hold a maximum of 20 entries. However, due to an incorrect boundary check in the code, it is possible to write beyond index 19 (the last valid index) when processing user-supplied imix entries.

When a user writes configuration data through the procfs interface (/proc/net/pktgen/), the pktgen_if_write function is invoked, which subsequently calls get_imix_entries. The UBSAN (Undefined Behavior Sanitizer) runtime detects when index 20 is accessed, which is out of range for the 20-element array. This out-of-bounds access can lead to memory corruption, potentially allowing local privilege escalation or denial of service conditions.

Root Cause

The root cause is an improper validation of array index (CWE-129) in the get_imix_entries function. The boundary check fails to properly limit the number of entries that can be processed, allowing the array index to exceed the maximum valid index of 19 for the 20-element imix_pkt array. The fix corrects this boundary check to allow the array to be filled completely while preventing any out-of-bounds access.

Attack Vector

The attack requires local access to the system with the ability to write to the pktgen procfs interface. An attacker would need to craft a malicious imix configuration with more than 20 entries and write it to the /proc/net/pktgen/ interface. The attack flow is as follows:

  1. Attacker gains local access to a system with the pktgen module loaded
  2. Attacker writes a crafted imix configuration through the procfs interface at /proc/net/pktgen/
  3. The pktgen_if_write function processes the input and calls get_imix_entries
  4. Due to incorrect boundary checking, the function accesses memory beyond the imix_entries array bounds
  5. This out-of-bounds access can corrupt kernel memory, potentially leading to privilege escalation or system crash

The call trace from the UBSAN report shows the exploitation path through vfs_write → proc_reg_write → pde_write → pktgen_if_write → get_imix_entries, where the out-of-bounds access at line 874 of pktgen.c occurs.

Detection Methods for CVE-2025-21680

Indicators of Compromise

  • UBSAN kernel log messages indicating array-index-out-of-bounds errors in net/core/pktgen.c
  • Kernel oops or crashes originating from the pktgen module
  • Unexpected writes to /proc/net/pktgen/ interfaces from unprivileged processes

Detection Strategies

  • Monitor kernel logs for UBSAN warnings containing "array-index-out-of-bounds" and references to pktgen.c
  • Implement auditd rules to track access to /proc/net/pktgen/ directories
  • Deploy endpoint detection to identify anomalous procfs write patterns to pktgen interfaces

Monitoring Recommendations

  • Enable UBSAN in kernel builds to detect exploitation attempts that trigger out-of-bounds access
  • Monitor for unusual process activity involving pktgen module interactions
  • Implement file integrity monitoring on critical kernel module configurations

How to Mitigate CVE-2025-21680

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the boundary check fix
  • If immediate patching is not possible, consider disabling or unloading the pktgen module if it is not required
  • Restrict access to /proc/net/pktgen/ to only trusted administrative accounts
  • Review and audit systems for signs of exploitation attempts

Patch Information

Multiple kernel patches have been released to address this vulnerability. The fix corrects the boundary check in get_imix_entries to properly validate array indices before access. Organizations should apply the appropriate patch for their kernel version:

  • Kernel Commit 1a9b65c
  • Kernel Commit 3450092c
  • Kernel Commit 76201b59
  • Kernel Commit 7cde21f5
  • Kernel Commit e5d24a70

Debian users should refer to the Debian LTS Announcement for distribution-specific patch information.

Workarounds

  • Unload the pktgen kernel module using rmmod pktgen if the packet generator functionality is not required
  • Blacklist the pktgen module to prevent automatic loading by adding blacklist pktgen to /etc/modprobe.d/blacklist.conf
  • Implement strict access controls on the /proc/net/pktgen/ directory to prevent unauthorized writes
bash
# Configuration example - Blacklist pktgen module
echo "blacklist pktgen" >> /etc/modprobe.d/blacklist.conf

# Unload the module if currently loaded
rmmod pktgen 2>/dev/null || true

# Update initramfs to persist changes
update-initramfs -u

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

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-129
  • Technical References
  • Debian LTS Announcement
  • Vendor Resources
  • Kernel Commit Update 1a9b65c

  • Kernel Commit Update 3450092c

  • Kernel Commit Update 76201b59

  • Kernel Commit Update 7cde21f5

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