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

CVE-2025-71085: Linux Kernel IPv6 CALIPSO DoS Vulnerability

CVE-2025-71085 is a denial of service flaw in the Linux kernel's IPv6 CALIPSO implementation that triggers a kernel oops through integer overflow in pskb_expand_head(). This article covers technical details, impact, and mitigation.

Updated: January 22, 2026

CVE-2025-71085 Overview

A kernel vulnerability exists in the Linux kernel's IPv6 CALIPSO (Common Architecture Label IPv6 Security Option) implementation that can trigger a kernel panic via a BUG_ON() condition in pskb_expand_head(). The vulnerability is caused by an implicit integer cast issue in __skb_cow() when processing specially crafted IPv6 hop-by-hop options, allowing an attacker to pass a negative value for the nhead parameter.

Critical Impact

This vulnerability can cause a kernel oops (panic), resulting in denial of service through system crash. An attacker with local access can trigger the bug by sending specially crafted UDP packets with malicious IPv6 hop-by-hop extension headers when CALIPSO is configured.

Affected Products

  • Linux kernel with IPv6 and CALIPSO support enabled
  • Systems using netlabel with CALIPSO protocol configurations
  • IPv6-enabled network stacks with hop-by-hop options processing

Discovery Timeline

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

Technical Details for CVE-2025-71085

Vulnerability Analysis

The vulnerability resides in the CALIPSO socket buffer attribute handling within the Linux kernel's networking subsystem. When calipso_skbuff_setattr() invokes skb_cow() to ensure there is sufficient headroom in the socket buffer, a calculation error can occur due to implicit integer casting in __skb_cow().

The problematic code path performs a boundary check (headroom > skb_headroom(skb)) intended to ensure that delta = headroom - skb_headroom(skb) never becomes negative. However, when headroom exceeds INT_MAX and delta evaluates to a value less than or equal to -NET_SKB_PAD, the check incorrectly passes. This results in pskb_expand_head() receiving a negative value for the nhead parameter, triggering the BUG_ON(nhead < 0) assertion at net/core/skbuff.c:2232.

The vulnerability can be triggered locally by an attacker who can:

  1. Configure netlabel to use CALIPSO protocol (requires privileges)
  2. Send UDP datagrams over IPv6 with crafted hop-by-hop extension headers

Root Cause

The root cause is an implicit integer overflow/underflow vulnerability in the __skb_cow() function. The boundary validation logic fails to account for cases where the headroom value exceeds INT_MAX, causing the subsequent subtraction operation to produce a negative delta value that bypasses the safety check. This is fundamentally an Integer Overflow vulnerability combined with insufficient bounds checking on the headroom calculation in calipso_skbuff_setattr().

Attack Vector

The attack requires local access and the ability to send IPv6 UDP packets with specially crafted control messages. The attacker uses the sendmsg() system call with an msghdr structure containing malicious IPv6 hop-by-hop options (IPV6_HOPOPTS). By setting specific values in the hop header that result in headroom calculations exceeding INT_MAX, the attacker can trigger the kernel BUG_ON condition, causing an immediate system crash.

The vulnerability is exploitable when CALIPSO is configured on the target system using netlabel, mapping the default address space to the CALIPSO protocol. The proof-of-concept demonstrates that setting hop_hdr[1] = 0x9 creates a hop size of 80 bytes ((0x9 + 1) * 8) which, combined with the message control length of 0x60, triggers the integer overflow condition.

Detection Methods for CVE-2025-71085

Indicators of Compromise

  • Unexpected kernel panics or system crashes with stack traces referencing pskb_expand_head() or calipso_skbuff_setattr()
  • System logs showing BUG_ON assertions in net/core/skbuff.c
  • Audit logs indicating netlabel configuration changes adding CALIPSO mappings
  • Unusual IPv6 UDP traffic patterns with oversized hop-by-hop extension headers

Detection Strategies

  • Monitor for kernel oops messages containing references to pskb_expand_head, __skb_cow, or calipso_skbuff_setattr functions
  • Implement system auditing on netlabel configuration commands (netlabelctl)
  • Use kernel tracing tools (ftrace, eBPF) to monitor socket buffer operations for anomalous headroom values
  • Deploy crash dump analysis to identify the specific trigger pattern in system failures

Monitoring Recommendations

  • Enable kernel crash dump collection (kdump) to capture diagnostic information when the BUG_ON triggers
  • Configure auditd rules to track execution of netlabel management commands
  • Monitor for systems with CALIPSO protocol enabled via netlabel configuration review
  • Implement network monitoring for IPv6 packets with unusually large hop-by-hop extension headers

How to Mitigate CVE-2025-71085

Immediate Actions Required

  • Apply the kernel patches from the official Linux kernel git repository immediately
  • Review and restrict netlabel configurations to remove unnecessary CALIPSO mappings
  • Limit local user access on systems where CALIPSO is required
  • Consider disabling CALIPSO support if not operationally required

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability. The fix modifies calipso_skbuff_setattr() to properly validate headroom values before passing them to skb_cow(), ensuring that only positive (growth) values are used. The following kernel commits contain the fix:

  • Kernel Git Commit 2bb75906
  • Kernel Git Commit 58fc7342
  • Kernel Git Commit 73744ad5
  • Kernel Git Commit bf370973
  • Kernel Git Commit c53aa6a5

Update to a kernel version containing one of these commits to resolve the vulnerability.

Workarounds

  • Remove CALIPSO mappings from netlabel if not required: netlabelctl map del default followed by configuration without CALIPSO protocol
  • Disable IPv6 on systems where it is not operationally necessary
  • Restrict access to the netlabelctl utility to prevent unauthorized CALIPSO configuration
  • Use network namespace isolation to limit exposure of vulnerable kernel code paths
bash
# Remove CALIPSO configuration as a workaround
netlabelctl map del default
netlabelctl calipso del doi:7
# Verify CALIPSO is not configured
netlabelctl calipso list

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

  • 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
  • Related CVEs
  • CVE-2026-31465: Linux Kernel Writeback DoS Vulnerability

  • CVE-2026-31472: Linux Kernel IPTFS DoS Vulnerability

  • CVE-2026-31451: Linux Kernel ext4 DOS Vulnerability

  • CVE-2026-31448: Linux Kernel ext4 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