CVE-2026-26122 Overview
CVE-2026-26122 is an Information Disclosure vulnerability affecting Microsoft Azure Container Instances (ACI) Confidential Containers. This vulnerability allows an authenticated attacker with low privileges to potentially access sensitive information through network-based exploitation. The flaw impacts the confidentiality of data processed within confidential container environments, which are specifically designed to provide hardware-based isolation for sensitive workloads.
Critical Impact
Authenticated attackers can exploit this vulnerability to disclose sensitive information from Azure Confidential Containers, potentially compromising the confidentiality guarantees that these environments are designed to provide.
Affected Products
- Microsoft Azure Container Instances (ACI) Confidential Containers
Discovery Timeline
- March 5, 2026 - CVE-2026-26122 published to NVD
- March 5, 2026 - Last updated in NVD database
Technical Details for CVE-2026-26122
Vulnerability Analysis
This Information Disclosure vulnerability in Microsoft ACI Confidential Containers enables authenticated attackers to access sensitive information that should be protected by the confidential computing environment. The vulnerability requires low-privilege network access to exploit, with no user interaction required. While the vulnerability has high impact on confidentiality, it does not affect the integrity or availability of the affected systems.
Confidential Containers are designed to provide hardware-level isolation using technologies like AMD SEV-SNP or Intel SGX to protect container workloads from unauthorized access, even from cloud administrators. A flaw in this security boundary could allow an attacker to bypass these protections and access data that should remain encrypted and isolated.
Root Cause
The root cause involves improper handling of sensitive information within the confidential container boundary. This may relate to how the ACI service processes or exposes data during container operations, potentially allowing information to leak outside the protected enclave environment. The specific technical details have not been publicly disclosed by Microsoft.
Attack Vector
The attack vector is network-based, meaning an attacker can exploit this vulnerability remotely without physical access to the target system. The attacker must have valid authentication credentials with low-level privileges to initiate the attack. No user interaction is required, making this vulnerability easier to exploit once an attacker has obtained initial access.
An attacker with authenticated access to the Azure environment could potentially:
- Identify vulnerable ACI Confidential Container deployments
- Leverage their low-privilege access to send crafted requests
- Extract sensitive information that should be protected by the confidential computing boundary
Detection Methods for CVE-2026-26122
Indicators of Compromise
- Unusual access patterns to ACI Confidential Container resources from low-privilege accounts
- Unexpected data access or API calls targeting confidential container metadata
- Anomalous network traffic originating from or directed at confidential container workloads
Detection Strategies
- Monitor Azure Activity Logs for suspicious access attempts to ACI Confidential Containers
- Implement Azure Defender for Containers to detect potential exploitation attempts
- Review access control configurations and audit logs for unexpected privilege usage
Monitoring Recommendations
- Enable diagnostic logging for all ACI Confidential Container instances
- Configure alerts for unusual data access patterns in Azure Monitor
- Regularly audit Azure RBAC permissions to identify over-privileged accounts with access to confidential workloads
How to Mitigate CVE-2026-26122
Immediate Actions Required
- Review and apply the latest Microsoft security updates for Azure Container Instances
- Audit all accounts with access to ACI Confidential Containers and implement least-privilege principles
- Monitor for any indicators of compromise in affected environments
Patch Information
Microsoft has released a security update addressing this vulnerability. Organizations should apply the patch immediately by following the guidance in the Microsoft Security Update for CVE-2026-26122. Azure-managed services may be automatically updated, but customers should verify their deployment configurations.
Workarounds
- Restrict network access to ACI Confidential Containers using Azure Private Link and network security groups
- Implement additional authentication controls and conditional access policies for users accessing confidential workloads
- Consider temporarily isolating affected confidential containers until patches are verified as applied
# Review Azure RBAC assignments for ACI resources
az role assignment list --scope /subscriptions/<subscription-id>/resourceGroups/<resource-group>/providers/Microsoft.ContainerInstance/containerGroups/<container-group> --output table
# Enable diagnostic settings for ACI monitoring
az monitor diagnostic-settings create --name aci-security-logs --resource <aci-resource-id> --logs '[{"category": "ContainerInstanceLog", "enabled": true}]' --workspace <log-analytics-workspace-id>
Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

