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
    • 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-40251

CVE-2026-40251: Incus Storage Volume DoS Vulnerability

CVE-2026-40251 is a denial of service vulnerability in Incus system container manager caused by flawed validation in storage volume imports. Attackers can crash the daemon repeatedly. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: May 7, 2026

CVE-2026-40251 Overview

CVE-2026-40251 affects Incus, an open source system container and virtual machine manager maintained by the LXC project. The vulnerability resides in the storage volume import logic of versions prior to 7.0.0. Missing validation in the backup restore subsystem allows an authenticated user with storage volume access to crash the Incus daemon by submitting a crafted backup archive. The same flawed indexing pattern also exists in the migration code path. Repeated exploitation keeps the daemon offline, producing a sustained denial of service condition against Incus-managed workloads. The issue is tracked under [CWE-129] Improper Validation of Array Index and is fixed in Incus 7.0.0.

Critical Impact

An authenticated attacker with storage volume privileges can crash the Incus daemon on demand by submitting a tampered backup archive, taking container and VM management offline.

Affected Products

  • Incus system container and virtual machine manager versions before 7.0.0
  • Incus backup restore subsystem in internal/server/storage/backend.go
  • Incus migration path using the same snapshot indexing pattern

Discovery Timeline

  • 2026-05-06 - CVE-2026-40251 published to the National Vulnerability Database
  • 2026-05-06 - Last updated in NVD database

Technical Details for CVE-2026-40251

Vulnerability Analysis

The vulnerability is an out-of-bounds read panic triggered during backup restoration of storage volumes. When Incus iterates through physical snapshot directories included in a backup archive, the loop uses each iteration index i to fetch the matching metadata entry from the parsed Config.Snapshots and Config.VolumeSnapshots slices. The guard condition len(slice) >= i-1 does not correctly bound the access. The check can evaluate to true even when slice[i] is past the end of the slice, producing a runtime panic in the Go process backing the Incus daemon. The same incorrect bounds check appears in the migration code path, expanding the attack surface beyond backup imports.

Root Cause

The root cause is a logic error in the bounds check expression itself. The intent of the comparison was to confirm that index i is addressable, but len(slice) >= i-1 permits access when len(slice) equals i-1 or i, both of which place slice[i] out of bounds. This off-by-more-than-one condition violates the array index validation requirements described in [CWE-129].

Attack Vector

An authenticated user with permission to import storage volumes submits a backup archive that contains physical snapshot directories on disk while supplying an index.yaml whose snapshot metadata array is empty or truncated. During restoration, the loop iterates over the on-disk snapshot directories and indexes into the shorter metadata slice. The faulty guard allows the read past the slice boundary, the Go runtime raises a panic, and the Incus daemon terminates. Repeating the request after each restart sustains a denial of service against the host.

No verified public exploit code is available. See the Incus GitHub Security Advisory GHSA-4m88-wxj4-9qj6 and the affected source in internal/server/storage/backend.go for technical details.

Detection Methods for CVE-2026-40251

Indicators of Compromise

  • Unexpected Incus daemon crashes with Go runtime panic stack traces referencing slice index out of range in backend.go
  • Storage volume import or migration API calls immediately followed by daemon termination and systemd restart events
  • Backup archives whose index.yaml snapshot metadata array length is inconsistent with the number of snapshot directories present in the archive

Detection Strategies

  • Monitor Incus daemon process exits and correlate with preceding incus storage volume import or incus move API requests from authenticated users
  • Inspect backup archive contents server-side before restore, comparing the count of physical snapshot directories against the length of Config.Snapshots and Config.VolumeSnapshots in index.yaml
  • Alert on repeated daemon restarts within short windows, which is the operational signature of the denial of service loop

Monitoring Recommendations

  • Forward Incus daemon logs and systemd unit status to a central log pipeline and trigger on panic strings combined with storage subsystem stack frames
  • Track API audit events for storage volume import, restore, and migration operations and tie them to user identity for post-incident review
  • Baseline normal restart frequency for the Incus service and alert on deviations indicative of repeated crash exploitation

How to Mitigate CVE-2026-40251

Immediate Actions Required

  • Upgrade Incus to version 7.0.0 or later on every host running the daemon
  • Restrict the storage volume import and migration permissions to trusted operators until the upgrade is complete
  • Audit recent backup restore and migration activity for crash patterns matching this vulnerability

Patch Information

The vulnerability is fixed in Incus 7.0.0. The fix corrects the bounds check used when indexing snapshot metadata during backup restore and migration. Refer to the Incus GitHub Security Advisory GHSA-4m88-wxj4-9qj6 for the patch commit and release notes.

Workarounds

  • Revoke storage volume feature access for any account that does not strictly require backup import or migration capability
  • Validate backup archives out-of-band before submitting them to Incus, rejecting any archive where snapshot directory count does not match index.yaml metadata
  • Place the Incus API behind network controls that limit which authenticated clients can reach storage import endpoints
bash
# Upgrade Incus to the patched release on Debian/Ubuntu-based systems
sudo apt update
sudo apt install --only-upgrade incus
incus --version  # confirm 7.0.0 or later

# Restrict storage volume permissions for non-administrative groups
incus auth group permission remove untrusted-ops storage_volume can_manage_backups

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechIncus

  • SeverityHIGH

  • CVSS Score7.1

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-129
  • Technical References
  • GitHub Code File

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-40197: Incus Storage Volume DoS Vulnerability

  • CVE-2026-40195: Incus Storage Bucket DOS Vulnerability

  • CVE-2026-33743: Incus Storage Bucket DoS Vulnerability

  • CVE-2026-40243: Incus OVN Information Disclosure Flaw
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