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

CVE-2026-45917: Linux Kernel IPVS Race Condition Flaw

CVE-2026-45917 is a race condition vulnerability in the Linux kernel IPVS component that can cause device reference leaks when network devices go down. This article covers technical details, affected versions, and mitigation.

Published: May 28, 2026

CVE-2026-45917 Overview

CVE-2026-45917 is a race condition vulnerability in the Linux kernel's IP Virtual Server (IPVS) subsystem. The flaw exists between the netdev notifier ip_vs_dst_event() and the code path that caches destination entries (dest_dst) with a network device that is going down. When the Forwarding Information Base (FIB) notifies the IPVS handler after it has already finished executing for a closing device, a valid route can be returned and cached. This results in a leaked device reference that persists until the destination is removed.

Critical Impact

A race between the IPVS netdev notifier and destination caching logic can cause a leaked net_device reference, preventing proper teardown of network interfaces in affected Linux kernels.

Affected Products

  • Linux kernel — IPVS subsystem (mainline)
  • Linux kernel stable branches receiving backported fixes via commits 024eb0bd19f5, 64af43033503, 8fde939b0206, and bae53b3baf2f
  • Distributions shipping vulnerable kernel versions prior to applying the upstream fix

Discovery Timeline

  • 2026-05-27 - CVE-2026-45917 published to NVD
  • 2026-05-27 - Last updated in NVD database

Technical Details for CVE-2026-45917

Vulnerability Analysis

The vulnerability resides in the Linux kernel's IPVS load-balancing subsystem, specifically in the destination cache management logic. IPVS caches dest_dst structures, which hold route information including a reference to the underlying net_device. The netdev notifier handler ip_vs_dst_event() is responsible for releasing cached dest_dst entries when a device transitions to a closed state.

The race occurs because the FIB layer may emit route notifications for a closing device after the IPVS notifier has already processed the NETDEV_DOWN event. If concurrent traffic triggers route resolution and dest_dst caching during this window, a fresh dest_dst referencing the down-going device can be installed after the cleanup handler has already run.

Because IPVS holds a reference on the cached device, the device reference count never reaches zero. The kernel cannot complete the teardown of the interface until the IPVS destination entry itself is removed.

Root Cause

The root cause is a missing synchronization check between the notifier path and the caching path. Prior to the fix, the caching code did not consult the device's running state when attaching a new dest_dst. The patch introduces a netif_running() check so that destination caching is skipped when the notifier handler is processing, or has processed, the closure of the device.

Attack Vector

This is a local kernel reliability issue rather than a remote exploitation primitive. Triggering the race requires concurrent IPVS traffic and a netdev down event on a device used by an IPVS destination. The observable effect is a leaked net_device reference, which can manifest as interfaces that cannot be fully removed, namespaces that fail to be reclaimed, and resource accounting anomalies. The flaw is most relevant in container and Kubernetes environments where IPVS-based service load balancing interacts frequently with dynamic network interface creation and teardown.

The upstream commits referenced in the advisory describe the fix in prose. See the Kernel Git Commit Patch and the Kernel Git Commit Fix for the exact code changes.

Detection Methods for CVE-2026-45917

Indicators of Compromise

  • Network interfaces that remain in a unregistering or refcount > 0 state long after a tear-down command, visible in dmesg as unregister_netdevice: waiting for <dev> to become free.
  • Network namespaces that fail to be reclaimed after pod or container deletion in IPVS-mode Kubernetes clusters.
  • Persistent IPVS destination entries (ipvsadm -Ln) referencing devices that have been administratively removed.

Detection Strategies

  • Audit kernel logs for repeated unregister_netdevice warnings on hosts running kube-proxy in IPVS mode or other IPVS-based load balancers.
  • Correlate netdev down events with subsequent IPVS destination activity to identify hosts experiencing the race window.
  • Track running kernel versions across the fleet and flag hosts not yet carrying the stable backport commits listed in the Kernel Git Commit Update.

Monitoring Recommendations

  • Monitor /proc/net/dev and netdev reference counters for interfaces that fail to unregister.
  • Alert on growth in the number of stale IPVS destinations across worker nodes in container orchestration platforms.
  • Collect kernel ring buffer messages centrally and search for ip_vs and unregister_netdevice strings.

How to Mitigate CVE-2026-45917

Immediate Actions Required

  • Inventory all Linux hosts using IPVS, including Kubernetes nodes with kube-proxy --proxy-mode=ipvs, LVS directors, and custom load balancers.
  • Plan and schedule kernel updates to versions containing the upstream fix commits referenced in the NVD entry.
  • Reboot or perform live-patch updates on affected hosts after installing the patched kernel package.

Patch Information

The fix adds a netif_running() check to ensure new dest_dst entries are not attached to a destination while the netdev notifier is processing closure of the underlying device. The fix is distributed across the following upstream commits: Kernel Git Commit Update, Kernel Git Commit Fix, Kernel Git Commit Change, and Kernel Git Commit Patch. Apply the kernel package update from your distribution vendor once it incorporates these commits.

Workarounds

  • Where feasible, switch kube-proxy from IPVS mode to iptables mode until patched kernels are deployed.
  • Avoid frequent churn of network interfaces backing IPVS real servers on unpatched hosts.
  • Drain workloads from affected nodes before tearing down interfaces to reduce the likelihood of triggering the race.
bash
# Verify running kernel version and IPVS usage on a host
uname -r
lsmod | grep ip_vs
ipvsadm -Ln | head -20

# Check for stuck netdev unregister warnings
dmesg | grep -i 'unregister_netdevice'

# Apply distribution kernel update (example for Debian/Ubuntu)
sudo apt-get update && sudo apt-get install --only-upgrade linux-image-$(uname -r)
sudo reboot

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

  • Vulnerability Details
  • TypeRace Condition

  • Vendor/TechLinux

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit Update

  • Kernel Git Commit Fix

  • Kernel Git Commit Change

  • Kernel Git Commit Patch
  • Related CVEs
  • CVE-2026-46152: Linux Kernel Race Condition Vulnerability

  • CVE-2026-46137: Linux Kernel Race Condition Vulnerability

  • CVE-2026-45910: Linux Kernel Race Condition Vulnerability

  • CVE-2026-31728: Linux Kernel Race Condition Vulnerability
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