A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-2026-46172

CVE-2026-46172: Linux Kernel Information Disclosure Flaw

CVE-2026-46172 is an information disclosure vulnerability in the Linux kernel's IPv6 XFRM implementation that causes memory leaks through unreleased dst entries. This article covers technical details, affected versions, and mitigation.

Published: May 28, 2026

CVE-2026-46172 Overview

CVE-2026-46172 is a memory leak vulnerability in the Linux kernel's IPv6 transformation (xfrm6) subsystem. The flaw resides in the xfrm6_rcv_encap() function, which handles encapsulated IPv6 packets within the IPsec processing path. When the function performs an IPv6 route lookup via ip6_route_input_lookup(), the returned destination entry (dst) is not properly released when the lookup resolves to an error route. Each packet traversing this error path leaks a referenced dst entry, gradually exhausting kernel memory resources on systems processing IPv6 IPsec traffic.

Critical Impact

Repeated packets hitting the error path leak dst entries, leading to kernel resource exhaustion and potential denial of service on affected Linux systems.

Affected Products

  • Linux kernel (mainline) — IPv6 xfrm6 subsystem
  • Linux stable kernel branches referenced by upstream fix commits
  • Distributions shipping vulnerable kernel versions with IPv6 IPsec enabled

Discovery Timeline

  • 2026-05-28 - CVE-2026-46172 published to NVD
  • 2026-05-28 - Last updated in NVD database

Technical Details for CVE-2026-46172

Vulnerability Analysis

The vulnerability exists in the IPv6 transformation receive path used by IPsec. The xfrm6_rcv_encap() function performs an IPv6 route lookup when the socket buffer (skb) does not already have a destination entry attached. The lookup helper ip6_route_input_lookup() returns a referenced dst entry even when the resolved route represents an error condition.

When dst->error is set, the function drops the skb without attaching the dst and without releasing the reference returned by the lookup. Each packet that reaches this drop path leaks one referenced dst entry. An attacker capable of sending crafted IPv6 packets that consistently resolve to error routes can force repeated invocations of this leaking path, gradually exhausting kernel memory tied to routing cache entries.

Root Cause

The root cause is a reference-counting error [CWE-401] in the error-handling branch of xfrm6_rcv_encap(). The function takes ownership of the dst reference from ip6_route_input_lookup() but fails to call the corresponding release routine before jumping to the drop label. This produces a classic acquire-without-release pattern on the routing entry reference.

Attack Vector

An attacker on a network path can transmit IPv6 packets crafted to trigger error route resolution within the xfrm6 receive path. Sustained traffic against an affected host steadily increases the count of orphaned dst references. Over time, this consumes kernel memory and can degrade system performance or cause routing subsystem failures.

The vulnerability is described in prose because no verified public exploitation code is available. Refer to the upstream fix commits for the exact code path and corrected logic:

  • Kernel patch 9d5047782f9b
  • Kernel patch c2efc4956981
  • Kernel patch 554c9b090c8a
  • Kernel patch 6a5eec0a2a0e
  • Kernel patch bc0fcb9823cd

Detection Methods for CVE-2026-46172

Indicators of Compromise

  • Steadily increasing kernel memory consumption attributable to routing or dst cache slabs over hours or days.
  • Unusual volumes of IPv6 traffic targeting hosts with IPsec/xfrm6 configured for IPv6 transport or tunnel mode.
  • Kernel log entries or dmesg output reporting memory pressure, slab allocation failures, or OOM events on IPsec gateways.

Detection Strategies

  • Monitor slab allocations for ip6_dst_cache using /proc/slabinfo and alert on sustained unbounded growth.
  • Correlate IPv6 ingress packet rates on IPsec interfaces with kernel memory utilization to identify abnormal growth patterns.
  • Verify the running kernel version against the fixed commits listed in the upstream stable tree references.

Monitoring Recommendations

  • Track host-level memory metrics with thresholds tuned to detect slow leaks rather than only acute exhaustion events.
  • Capture and review IPv6 routing table changes and unreachable-route events on hosts terminating IPsec tunnels.
  • Forward kernel logs to a centralized analytics platform for longitudinal review of slab and memory warnings.

How to Mitigate CVE-2026-46172

Immediate Actions Required

  • Identify Linux hosts running IPv6 IPsec (xfrm6) workloads, particularly IPsec gateways and VPN concentrators.
  • Apply the upstream stable kernel update that releases the dst reference before the drop path in xfrm6_rcv_encap().
  • Reboot updated systems to ensure the patched kernel is active and the leaking path is no longer reachable.

Patch Information

The fix releases the referenced dst entry before jumping to the drop path, eliminating the reference leak. The corrected logic is distributed across multiple stable branches via the commits 554c9b090c8a, 6a5eec0a2a0e, 9d5047782f9b, bc0fcb9823cd, and c2efc4956981. Distribution maintainers will incorporate these commits into security-maintained kernel packages.

Workarounds

  • Where IPv6 IPsec is not required, disable xfrm6 processing or restrict IPv6 ingress on affected interfaces.
  • Apply ingress filtering at network boundaries to drop IPv6 packets destined for non-routable or error-resolved addresses.
  • Schedule periodic reboots of affected hosts as a short-term measure until the kernel patch is deployed.
bash
# Verify kernel version and check for the fix commits in your distribution
uname -r
# Example: query installed kernel package metadata (Debian/Ubuntu)
apt-cache policy linux-image-$(uname -r)
# Example: query installed kernel package metadata (RHEL/CentOS/Fedora)
rpm -q --changelog kernel | grep -i xfrm6_rcv_encap

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • 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-46229: Linux Kernel Information Disclosure Flaw

  • CVE-2026-46221: Linux Kernel Information Disclosure Flaw

  • CVE-2026-46211: Linux Kernel Information Disclosure Bug

  • CVE-2026-46182: Linux Kernel Information Disclosure Flaw
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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