CVE-2026-32268
Unauthenticated Information Disclosure in Craft CMS Azure Blob Plugin
Publication date: 2026-03-18
Last updated on: 2026-03-18
Assigner: GitHub, Inc.
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| craftcms | azure_blob | to 2.1.1 (exc) |
| craftcms | azure_blob | From 2.0.0-beta.1 (inc) to 2.1.0 (inc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-862 | The product does not perform an authorization check when an actor attempts to access a resource or perform an action. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
CVE-2026-32268 is a critical vulnerability in the Craft CMS Azure Blob Storage plugin versions 2.0.0-beta.1 up to 2.1.0. It allows unauthenticated users who have a valid CSRF token to access the DefaultController->actionLoadContainerData() endpoint and retrieve a list of Azure storage buckets that the plugin can access.
This happens because the plugin lacks proper authorization checks on this endpoint, leading to unauthorized disclosure of potentially sensitive information. Additionally, Azure may return sensitive data in error messages, which exposes further attack vectors.
The vulnerability was fixed in version 2.1.1 by adding authorization checks to ensure only users with administrative privileges can access this data.
How can this vulnerability impact me? :
This vulnerability can lead to unauthorized disclosure of sensitive information by allowing unauthenticated users to view a list of Azure storage buckets accessible by the plugin.
Because Azure may include sensitive data in error messages, attackers could exploit this to gain additional information about the storage environment.
Such information disclosure can increase the risk of further attacks, data breaches, or unauthorized access to cloud storage resources.
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
I don't know
How can this vulnerability be detected on my network or system? Can you suggest some commands?
[{'type': 'paragraph', 'content': 'This vulnerability can be detected by attempting to access the DefaultController->actionLoadContainerData() endpoint without authentication but with a valid CSRF token. If the endpoint returns a list of Azure storage buckets, the system is vulnerable.'}, {'type': 'paragraph', 'content': 'A practical approach is to send a POST request with a valid CSRF token to the vulnerable endpoint and observe if bucket data is returned.'}, {'type': 'list_item', 'content': 'Use curl or similar tools to send a POST request to the endpoint, for example:'}, {'type': 'list_item', 'content': 'curl -X POST -H "X-CSRF-Token: <valid_token>" -H "Accept: application/json" https://<your-craftcms-site>/actions/azure-blob/default/load-container-data'}, {'type': 'paragraph', 'content': 'If the response contains a list of buckets without requiring authentication, the vulnerability is present.'}] [1, 2]
What immediate steps should I take to mitigate this vulnerability?
The immediate and recommended mitigation step is to update the Azure Blob Storage plugin for Craft CMS to version 2.1.1 or later.
Version 2.1.1 introduces authorization checks that restrict access to the actionLoadContainerData() endpoint to authenticated administrators only, preventing unauthorized disclosure of bucket information.
Until the update can be applied, consider restricting access to the vulnerable endpoint by network controls or web application firewall rules to block unauthenticated requests.