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

CVE-2025-68776: Linux Kernel Buffer Overflow Vulnerability

CVE-2025-68776 is a buffer overflow flaw in the Linux kernel's net/hsr module that causes NULL pointer dereference crashes. This article covers the technical details, affected versions, impact, and mitigation strategies.

Updated: January 22, 2026

CVE-2025-68776 Overview

CVE-2025-68776 is a NULL pointer dereference vulnerability in the Linux kernel's High-availability Seamless Redundancy (HSR) and Parallel Redundancy Protocol (PRP) networking subsystem. The vulnerability exists in the prp_get_untagged_frame() function, which fails to validate the return value of __pskb_copy() before passing it to skb_clone(). When memory allocation fails and __pskb_copy() returns NULL, the subsequent call to skb_clone() with a NULL pointer triggers a kernel crash.

Critical Impact

This vulnerability can cause a kernel panic and system crash when processing specially crafted network frames through HSR/PRP interfaces, resulting in a denial of service condition affecting systems using industrial redundancy protocols.

Affected Products

  • Linux Kernel (HSR/PRP networking subsystem)
  • Systems using High-availability Seamless Redundancy (HSR) protocol
  • Systems using Parallel Redundancy Protocol (PRP)

Discovery Timeline

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

Technical Details for CVE-2025-68776

Vulnerability Analysis

The vulnerability is a classic NULL pointer dereference resulting from missing error handling in the kernel's HSR/PRP frame processing code. The prp_get_untagged_frame() function is responsible for creating untagged copies of network frames for redundancy protocol processing. It calls __pskb_copy() to allocate and copy the socket buffer structure (frame->skb_std), but fails to check if the allocation was successful before proceeding with subsequent operations.

When the system is under memory pressure or an attacker can trigger allocation failures, __pskb_copy() returns NULL. The code then passes this NULL pointer to skb_clone(), which attempts to dereference it at offset 0x78-0x7f (as indicated by the KASAN report), causing a general protection fault and kernel panic. The crash occurs in the skb_clone() function at net/core/skbuff.c:2041.

The call trace shows the vulnerability is triggered through the network receive path: netif_receive_skb → hsr_handle_frame → hsr_forward_skb → hsr_forward_do → prp_get_untagged_frame. This means any network traffic processed by an HSR/PRP interface could potentially trigger this crash if memory allocation fails at the right moment.

Root Cause

The root cause is a missing NULL check after calling __pskb_copy() in the prp_get_untagged_frame() function. The __pskb_copy() function can return NULL when memory allocation fails, but the PRP code did not handle this error condition. This is a common class of kernel programming error where allocation return values are not properly validated before use.

The fix adds a NULL check immediately after the __pskb_copy() call to handle allocation failures gracefully, preventing the crash by returning early when the allocation fails rather than passing a NULL pointer to skb_clone().

Attack Vector

The attack vector involves network-based exploitation through HSR/PRP interface traffic processing. An attacker with network access to a system running HSR/PRP could potentially trigger this vulnerability by:

  1. Sending crafted network frames to an HSR/PRP interface while the system is under memory pressure
  2. Coordinating a memory exhaustion condition with network traffic to increase the likelihood of allocation failure
  3. Repeatedly sending frames to trigger the vulnerable code path until an allocation failure occurs

The vulnerability was discovered through syzkaller fuzzing, as indicated by the syz.1.18 process name in the crash log. This suggests the vulnerability can be triggered through the TUN/TAP interface, which was used to inject packets in the fuzzing scenario (tun_get_user → tun_chr_write_iter in the call trace).

Detection Methods for CVE-2025-68776

Indicators of Compromise

  • Kernel panic messages containing general protection fault or null-ptr-deref in the HSR/PRP code paths
  • Crash dumps with RIP pointing to skb_clone in net/core/skbuff.c
  • KASAN reports indicating null pointer dereference in range 0x0000000000000078-0x000000000000007f
  • System instability or unexpected reboots on systems using HSR/PRP networking

Detection Strategies

  • Monitor kernel logs for oops messages referencing hsr_forward_skb, hsr_handle_frame, or prp_get_untagged_frame
  • Implement kernel crash dump analysis to identify NULL pointer dereferences in the HSR subsystem
  • Deploy KASAN-enabled kernels in testing environments to detect memory safety issues

Monitoring Recommendations

  • Configure kernel crash dump collection (kdump) to capture detailed crash information
  • Monitor system availability metrics for unexpected reboots on systems using HSR/PRP protocols
  • Review kernel ring buffer (dmesg) for warning messages related to memory allocation failures in networking code

How to Mitigate CVE-2025-68776

Immediate Actions Required

  • Apply the official kernel patches as soon as they are available for your distribution
  • Monitor systems using HSR/PRP protocols for signs of exploitation or instability
  • Consider temporarily disabling HSR/PRP functionality on non-critical systems until patched
  • Ensure systems have adequate memory resources to reduce likelihood of allocation failures

Patch Information

Multiple kernel patches have been released to address this vulnerability. The fix adds a NULL check immediately after the __pskb_copy() call to handle allocation failures gracefully. The following commits contain the fix:

  • Kernel Patch Commit 1742974
  • Kernel Patch Commit 188e0fa5
  • Kernel Patch Commit 6220d38
  • Kernel Patch Commit 7be6d25
  • Kernel Patch Commit 8f289fa1

Workarounds

  • Disable HSR/PRP networking functionality if not required for operations
  • Implement network segmentation to limit exposure of HSR/PRP interfaces to untrusted networks
  • Increase system memory resources to reduce the likelihood of allocation failures triggering the vulnerability
  • Consider using traffic shaping to limit the rate of packets processed by HSR/PRP interfaces
bash
# Disable HSR module if not required
sudo modprobe -r hsr

# Prevent HSR module from loading at boot
echo "blacklist hsr" | sudo tee /etc/modprobe.d/blacklist-hsr.conf

# Verify HSR module is not loaded
lsmod | grep hsr

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 Patch Commit 1742974

  • Kernel Patch Commit 188e0fa5

  • Kernel Patch Commit 6220d38

  • Kernel Patch Commit 7be6d25

  • Kernel Patch Commit 8f289fa1
  • 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