Security Vulnerability Report
中文
CVE-2025-68967 CVSS 5.7 MEDIUM

CVE-2025-68967

Published: 2026-01-14 03:15:52
Last Modified: 2026-01-15 17:05:53

Description

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

CVSS Details

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

Configurations (Affected Products)

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
import os import sys # CVE-2025-68967 PoC - Improper Permission Control in Print Module # This is a conceptual PoC for demonstration purposes # Note: This vulnerability requires local access to the affected device def check_print_service_access(): """ Check if the print service has improper permission settings This PoC demonstrates the permission control issue in Huawei print module """ print('[+] CVE-2025-68967 PoC') print('[+] Target: Huawei Device Print Module') print('[+] Vulnerability: Improper Permission Control') print('') # Check for known vulnerable configuration vulnerable_paths = [ '/etc/print/capabilities', '/var/spool/print', '/opt/huawei/print/share' ] for path in vulnerable_paths: if os.path.exists(path): # Check if file/directory has overly permissive permissions stat_info = os.stat(path) mode = stat_info.st_mode & 0o777 # World-readable or writable permissions indicate vulnerability if mode & 0o004 or mode & 0o002: print(f'[VULN] {path} has permissive mode: {oct(mode)}') print(f' Attackers with local access can read/write this resource') return True print('[-] No obvious permission issues detected') return False if __name__ == '__main__': check_print_service_access()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68967", "sourceIdentifier": "[email protected]", "published": "2026-01-14T03:15:51.593", "lastModified": "2026-01-15T17:05:53.053", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Vulnerability of improper permission control in the print module.\nImpact: Successful exploitation of this vulnerability may affect service confidentiality."}, {"lang": "es", "value": "Vulnerabilidad de control de permisos inadecuado en el módulo de impresión.\nImpacto: La explotación exitosa de esta vulnerabilidad puede afectar la confidencialidad del servicio."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:L", "baseScore": 5.7, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.5, "impactScore": 2.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: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:6.0.0:*:*:*:*:*:*:*", "matchCriteriaId": "0EBE30DD-E146-4A6A-BE68-DEF9D4D0B2A8"}]}]}], "references": [{"url": "https://consumer.huawei.com/en/support/bulletin/2026/1//", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "https://consumer.huawei.com/en/support/bulletinlaptops/2026/1//", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}