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

CVE-2026-35527: Linuxcontainers Incus SSRF Vulnerability

CVE-2026-35527 is an SSRF vulnerability in Linuxcontainers Incus that allows authenticated users to trigger blind HEAD requests to arbitrary destinations. This article covers technical details, affected versions, and mitigation.

Published: May 7, 2026

CVE-2026-35527 Overview

CVE-2026-35527 is a Server-Side Request Forgery (SSRF) vulnerability [CWE-918] in Incus, an open source container and virtual machine manager maintained by the Linux Containers project. The flaw exists in versions prior to 7.0.0. The image import flow issues an outbound HEAD request to a user-supplied URL before validating the request against project restrictions such as restricted.images.servers. An authenticated user can coerce the Incus daemon into making blind HEAD requests to arbitrary destinations, including internal services and cloud metadata endpoints. The issue is fixed in Incus 7.0.0.

Critical Impact

Authenticated users can abuse the Incus daemon as an SSRF proxy to probe internal networks and leak host metadata through outbound HEAD requests.

Affected Products

  • Linux Containers Incus versions prior to 7.0.0
  • Incus deployments exposing image import APIs to authenticated users
  • Multi-tenant Incus environments relying on restricted.images.servers policy enforcement

Discovery Timeline

  • 2026-05-05 - CVE-2026-35527 published to NVD
  • 2026-05-07 - Last updated in NVD database

Technical Details for CVE-2026-35527

Vulnerability Analysis

The vulnerability resides in the imgPostURLInfo function within cmd/incusd/images.go. When a user submits an image import request referencing a remote URL, the daemon constructs and dispatches an outbound HEAD request to resolve image metadata. This network interaction occurs before policy enforcement checks reject the import based on project restrictions.

While the eventual image download is blocked by the restricted.images.servers policy, the HEAD probe still reaches the attacker-controlled host. This produces a blind SSRF primitive usable by any authenticated user with permission to invoke the image import endpoint.

The outbound request also embeds custom headers, including Incus-Server-Architectures and Incus-Server-Version. These headers disclose host environment metadata to the attacker-controlled endpoint, providing reconnaissance value beyond the SSRF itself. The pattern mirrors CVE-2026-24767, indicating a recurring class of pre-validation network calls in the image subsystem.

Root Cause

The root cause is improper ordering of security controls. The daemon performs a network operation against an attacker-controlled URL before applying project-level allowlist enforcement. Validation logic runs after the HEAD request completes, so the policy check cannot prevent the outbound traffic.

Attack Vector

An authenticated user submits an image import request with a source URL pointing to an internal service, link-local cloud metadata endpoint such as 169.254.169.254, or any other host reachable from the Incus daemon. The daemon issues a HEAD request to that destination. The attacker observes the request server-side, harvesting timing data, header values, and response behavior. The import is later rejected, but the SSRF has already executed.

No verified public proof-of-concept code is available. See the GitHub Security Advisory GHSA-8gw4-p4wq-4hcv for vendor technical details.

Detection Methods for CVE-2026-35527

Indicators of Compromise

  • Outbound HEAD requests from Incus daemon hosts to internal IP ranges, RFC1918 space, or 169.254.169.254
  • HTTP requests originating from Incus hosts containing the Incus-Server-Architectures or Incus-Server-Version headers to unexpected destinations
  • Image import API calls with source.server URLs that subsequently fail policy validation

Detection Strategies

  • Inspect Incus daemon access logs for image import requests where the source URL targets non-allowlisted servers
  • Correlate authenticated API calls to /1.0/images with outbound network connections from the daemon process
  • Alert on repeated failed image imports from the same user identity, which may indicate SSRF probing

Monitoring Recommendations

  • Forward Incus audit logs and host network telemetry to a centralized analytics platform for correlation
  • Monitor egress traffic from container hosts to cloud metadata services and internal management interfaces
  • Track per-user rates of image import attempts to detect enumeration behavior

How to Mitigate CVE-2026-35527

Immediate Actions Required

  • Upgrade Incus to version 7.0.0 or later, which moves policy enforcement before the outbound HEAD request
  • Audit existing project configurations and confirm restricted.images.servers is set on all multi-tenant projects
  • Review authenticated user access and remove image import privileges from accounts that do not require them

Patch Information

The vendor fixed this vulnerability in Incus 7.0.0. Refer to the GitHub Security Advisory GHSA-8gw4-p4wq-4hcv and the Incus source repository for the patched code paths.

Workarounds

  • Apply egress firewall rules on Incus hosts to block daemon connections to RFC1918 ranges, link-local addresses, and cloud metadata endpoints
  • Restrict image import API access to trusted administrative identities until the upgrade is complete
  • Place Incus daemons in network segments that cannot reach sensitive internal services or instance metadata services
bash
# Example: block daemon egress to cloud metadata and link-local addresses
iptables -I OUTPUT -m owner --uid-owner incus -d 169.254.169.254 -j REJECT
iptables -I OUTPUT -m owner --uid-owner incus -d 169.254.0.0/16 -j REJECT

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechLinuxcontainers Incus

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:N/VI:N/VA:N/SC:L/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
  • AvailabilityNone
  • CWE References
  • CWE-918
  • Technical References
  • GitHub Incus Code File
  • Vendor Resources
  • GitHub Security Advisory GHSA-8gw4-p4wq-4hcv
  • Related CVEs
  • CVE-2026-33945: Incus Privilege Escalation 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