Security Vulnerability Report
中文
CVE-2025-66334 CVSS 3.3 LOW

CVE-2025-66334

Published: 2025-12-08 09:15:48
Last Modified: 2025-12-08 19:35:40

Description

Denial of service (DoS) vulnerability in the office service. Impact: Successful exploitation of this vulnerability may affect availability.

CVSS Details

CVSS Score
3.3
Severity
LOW
CVSS Vector
CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L

Configurations (Affected Products)

cpe:2.3:o:huawei:harmonyos:5.0.1:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:huawei:harmonyos:5.1.0:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:huawei:harmonyos:6.0.0:*:*:*:*:*:*:* - VULNERABLE
Huawei Office Service(具体版本需参考华为官方安全公告)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-66334 PoC - Huawei Office Service DoS # Description: Denial of service vulnerability in Huawei Office Service # CVSS: 3.3 (AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L) import os import time import subprocess import sys def check_vulnerability(): """ Check if Huawei Office Service is installed and vulnerable """ print("[+] Checking for Huawei Office Service installation...") # Common installation paths for Huawei Office Service paths = [ r"C:\Program Files\Huawei\Office\OfficeService.exe", r"C:\Program Files (x86)\Huawei\Office\OfficeService.exe", "/opt/huawei/office/OfficeService", "/usr/local/huawei/office/OfficeService" ] for path in paths: if os.path.exists(path): print(f"[+] Found Huawei Office Service at: {path}") return True print("[-] Huawei Office Service not found") return False def trigger_dos(): """ Trigger DoS condition in Huawei Office Service Note: This is a conceptual PoC. Actual exploitation requires specific crafted input based on the vulnerability details. """ print("[+] Attempting to trigger DoS condition...") print("[!] This requires local access and user interaction") print("[!] Attack vector: Local (AV:L)") print("[!] User interaction required: Yes (UI:R)") # The actual DoS trigger would involve: # 1. Creating a specially crafted document or request # 2. Having the user open/access it through Office Service # 3. Service enters error state or crashes # Example trigger method (conceptual): # - Craft malicious document that triggers parsing error # - Force service to process the document # - Service becomes unresponsive or terminates print("[-] Detailed PoC not available - requires further analysis") print("[-] Refer to official Huawei security advisory for details") if __name__ == "__main__": print("=" * 60) print("CVE-2025-66334 PoC - Huawei Office Service DoS") print("=" * 60) if not check_vulnerability(): print("[-] Target not vulnerable or service not installed") sys.exit(0) print("\n[+] Target appears to be installed") trigger_dos()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66334", "sourceIdentifier": "[email protected]", "published": "2025-12-08T09:15:48.373", "lastModified": "2025-12-08T19:35:40.020", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Denial of service (DoS) vulnerability in the office service. Impact: Successful exploitation of this vulnerability may affect availability."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L", "baseScore": 3.3, "baseSeverity": "LOW", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 1.8, "impactScore": 1.4}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", "baseScore": 5.5, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-494"}]}, {"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "NVD-CWE-noinfo"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:huawei:harmonyos:5.0.1:*:*:*:*:*:*:*", "matchCriteriaId": "738D803A-C4CE-477B-BC89-CE47351C0A84"}, {"vulnerable": true, "criteria": "cpe:2.3:o:huawei:harmonyos:5.1.0:*:*:*:*:*:*:*", "matchCriteriaId": "E39DE6A6-CBE6-4086-93CD-113D1B3BA730"}, {"vulnerable": true, "criteria": "cpe:2.3:o:huawei:harmonyos:6.0.0:*:*:*:*:*:*:*", "matchCriteriaId": "0EBE30DD-E146-4A6A-BE68-DEF9D4D0B2A8"}]}]}], "references": [{"url": "https://consumer.huawei.com/en/support/bulletin/2025/12/", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}