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

CVE-2026-40195: Incus Storage Bucket DOS Vulnerability

CVE-2026-40195 is a denial of service flaw in Incus that allows authenticated users to crash the daemon via malformed storage bucket imports. This article covers the technical details, affected versions, and mitigation.

Published: May 7, 2026

CVE-2026-40195 Overview

CVE-2026-40195 is a null pointer dereference vulnerability in Incus, an open-source system container and virtual machine manager maintained by the LXC project. The flaw resides in the storage bucket import logic, where the daemon parses an index.yaml file from an imported backup archive without validating that the configuration object was initialized. An authenticated user with access to the storage bucket feature can submit a malformed archive that omits the config block, triggering a nil-pointer dereference and crashing the Incus daemon. Repeated exploitation keeps Incus offline and produces a sustained denial of service. The issue is fixed in Incus version 7.0.0.

Critical Impact

An authenticated attacker can repeatedly crash the Incus daemon by importing a crafted storage bucket archive, denying service to all containers and virtual machines managed by the host.

Affected Products

  • Incus system container and virtual machine manager
  • All Incus releases prior to version 7.0.0
  • Deployments exposing storage bucket import functionality to non-administrative users

Discovery Timeline

  • 2026-05-06 - CVE CVE-2026-40195 published to NVD
  • 2026-05-06 - Last updated in NVD database

Technical Details for CVE-2026-40195

Vulnerability Analysis

The vulnerability is classified under [CWE-476] Null Pointer Dereference. Incus exposes a storage bucket import operation that consumes a backup archive containing metadata in an index.yaml file. During import, the daemon unmarshals this YAML into a backup configuration structure and accesses nested members of the parsed object before validating that the structure is complete.

When an attacker submits an archive whose index.yaml omits the config block, the configuration field remains nil. The daemon dereferences this nil pointer while reading bucket metadata, causing the Go runtime to panic and terminate the Incus process. Because Incus runs as a long-lived daemon that supervises containers and virtual machines, a panic stops orchestration, API access, and lifecycle operations until an operator restarts the service.

Root Cause

The root cause is missing input validation in the backup metadata handling routine. The import path trusts the structure of attacker-supplied YAML and does not check whether required substructures are present before dereferencing them. Defensive nil checks on the parsed configuration object are absent in versions before 7.0.0.

Attack Vector

Exploitation requires network access to the Incus API and authenticated permissions to use the storage bucket feature. The attacker crafts a backup archive containing an index.yaml file that intentionally omits the top-level config mapping. Submitting the archive through the bucket import endpoint triggers the dereference. Repeated submissions after each daemon restart sustain the denial of service condition.

No verified public proof-of-concept code is available. Refer to the GitHub Security Advisory GHSA-gc7j-g665-rxr9 for vendor technical details.

Detection Methods for CVE-2026-40195

Indicators of Compromise

  • Unexpected Incus daemon crashes or panic stack traces referencing storage bucket or backup configuration code paths.
  • API audit log entries showing storage bucket import requests from non-administrative accounts immediately preceding daemon termination.
  • Repeated systemd or service-manager restarts of the incus or incusd process within short time windows.

Detection Strategies

  • Monitor Incus daemon logs for Go runtime panic messages and nil pointer dereference traces during bucket import operations.
  • Correlate authenticated API calls to the storage bucket import endpoint with subsequent process exits to flag exploitation attempts.
  • Alert on import requests containing index.yaml payloads that lack a config key after parsing at an inspection proxy.

Monitoring Recommendations

  • Track the rate of Incus service restarts per host and alert when restarts exceed normal baselines.
  • Audit the user accounts permitted to invoke storage bucket operations and review their API activity for anomalies.
  • Forward Incus daemon logs and API access logs to a centralized SIEM for retention and correlation.

How to Mitigate CVE-2026-40195

Immediate Actions Required

  • Upgrade all Incus installations to version 7.0.0 or later, which contains the validation fix.
  • Restrict storage bucket feature permissions to trusted administrative accounts until patching is complete.
  • Review existing API tokens and certificates to ensure only authorized users can reach the bucket import endpoint.

Patch Information

The vulnerability is fixed in Incus version 7.0.0. Patch details and the upstream commit are referenced in the GitHub Security Advisory GHSA-gc7j-g665-rxr9. Operators running distribution-packaged Incus should apply the corresponding distribution update once available.

Workarounds

  • Remove the storage bucket permission from non-administrative user roles in the Incus authorization configuration.
  • Place the Incus API behind a reverse proxy that inspects and rejects bucket import payloads with malformed index.yaml content.
  • Disable storage bucket import functionality entirely on hosts that do not require it.
bash
# Verify current Incus version and upgrade
incus --version

# Example: upgrade via package manager (Debian/Ubuntu)
sudo apt update && sudo apt install --only-upgrade incus

# Confirm fixed version is installed
incus --version  # expect 7.0.0 or later

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-476
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-40251: Incus Storage Volume DoS Vulnerability

  • CVE-2026-40197: Incus Storage Volume 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