Security Vulnerability Report
中文
CVE-2026-34860 CVSS 4.1 MEDIUM

CVE-2026-34860

Published: 2026-04-13 04:16:13
Last Modified: 2026-04-16 04:45:54

Description

Access control vulnerability in the memo module. Impact: Successful exploitation of this vulnerability will affect availability and confidentiality.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:o:huawei:harmonyos:5.1.0:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:huawei:harmonyos:6.0.0:*:*:*:*:*:*:* - VULNERABLE
华为部分手机和笔记本(具体版本见厂商2026年4月安全公告)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 # PoC for CVE-2026-34860: Conceptual Access Control Bypass in Huawei Memo Module # This script simulates a local attacker attempting to access restricted memo data. import os import sys def check_vulnerability(): # Simulate checking for the vulnerable component # In a real scenario, this would target the specific URI or IPC mechanism of the Memo module target_path = "/data/data/com.huawei.notepad/databases/notes.db" print("[+] Attempting to bypass access controls on Memo module...") # Simulate the logic where access control fails try: # This is a simulation. Actual exploitation would utilize the specific IPC vulnerability. if os.path.exists(target_path): print(f"[!] Potential access to sensitive data at {target_path}") print("[!] Vulnerability confirmed: Access control bypass allows read access.") return True else: print("[-] Target path not found (may be non-rooted or different path)") return False except Exception as e: print(f"[-] Error: {e}") return False if __name__ == "__main__": if check_vulnerability(): print("[+] PoC execution completed. Impact: Confidentiality Leak.") else: print("[-] PoC execution failed or environment not vulnerable.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-34860", "sourceIdentifier": "[email protected]", "published": "2026-04-13T04:16:12.650", "lastModified": "2026-04-16T04:45:53.703", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Access control vulnerability in the memo module.\nImpact: Successful exploitation of this vulnerability will affect availability and confidentiality."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:H/PR:N/UI:R/S:C/C:L/I:N/A:L", "baseScore": 4.1, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 1.0, "impactScore": 2.7}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:L", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-284"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"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/2026/4/", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "https://consumer.huawei.com/en/support/bulletinlaptops/2026/4/", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}