Security Vulnerability Report
中文
CVE-2025-64738 CVSS 5.0 MEDIUM

CVE-2025-64738

Published: 2025-11-13 15:15:53
Last Modified: 2026-01-13 20:49:12

Description

External control of file name or path in Zoom Workplace for macOS before version 6.5.10 may allow an authenticated user to conduct a disclosure of information via local access.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:zoom:meeting_software_development_kit:*:*:*:*:*:macos:*:* - VULNERABLE
cpe:2.3:a:zoom:workplace_desktop:*:*:*:*:*:macos:*:* - VULNERABLE
Zoom Workplace for macOS < 6.5.10

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-64738 PoC - Zoom Workplace macOS Path Traversal # This PoC demonstrates the path traversal vulnerability in Zoom Workplace for macOS # Note: This is for educational and authorized testing purposes only import os import subprocess import sys def check_zoom_version(): """Check if Zoom Workplace is installed and its version""" zoom_path = "/Applications/zoom.us.app" if os.path.exists(zoom_path): print(f"[+] Zoom Workplace found at: {zoom_path}") # Version check would go here return True else: print("[-] Zoom Workplace not found") return False def exploit_path_traversal(): """ Simulate path traversal exploitation In real scenario, this would interact with Zoom's file handling functionality """ print("[*] Attempting to exploit path traversal vulnerability...") # Malicious path attempting to access system files malicious_paths = [ "../../../etc/passwd", "../../../Users/Shared/zoom_traversal.txt", "../../../../../../../../../../../../tmp/zoom_test.txt" ] for path in malicious_paths: print(f"[*] Testing path: {path}") # In actual exploitation, this would be passed to Zoom's vulnerable function # simulated_path = zoom_vulnerable_function(path) print("[!] This is a simulated PoC. Real exploitation requires local access to Zoom.") print("[!] Recommendation: Upgrade to Zoom Workplace macOS version 6.5.10 or later") def main(): print("="*60) print("CVE-2025-64738 PoC - Zoom Workplace macOS Path Traversal") print("="*60) if not check_zoom_version(): sys.exit(1) exploit_path_traversal() print("\n[*] Mitigation: Update to Zoom Workplace macOS >= 6.5.10") if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64738", "sourceIdentifier": "[email protected]", "published": "2025-11-13T15:15:53.260", "lastModified": "2026-01-13T20:49:11.700", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "External control of file name or path in Zoom Workplace for macOS before version 6.5.10 may allow an authenticated user to conduct a disclosure of information via local access."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:U/C:H/I:N/A:N", "baseScore": 5.0, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.3, "impactScore": 3.6}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", "baseScore": 5.5, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-73"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:zoom:meeting_software_development_kit:*:*:*:*:*:macos:*:*", "versionEndExcluding": "6.5.10", "matchCriteriaId": "6E806B61-C0EF-4A0E-9B7A-F5D27D173B32"}, {"vulnerable": true, "criteria": "cpe:2.3:a:zoom:workplace_desktop:*:*:*:*:*:macos:*:*", "versionEndExcluding": "6.5.10", "matchCriteriaId": "E77D9B96-3C18-49F1-9119-30A154D6243D"}]}]}], "references": [{"url": "https://www.zoom.com/en/trust/security-bulletin/zsb-25040", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}