Security Vulnerability Report
中文
CVE-2026-28733 CVSS 6.5 MEDIUM

CVE-2026-28733

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

Description

in OpenHarmony v6.0 and prior versions allow a local attacker arbitrary code execution.

CVSS Details

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

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 # PoC for CVE-2026-28733 (Conceptual) # This script simulates the trigger mechanism for the local code execution vulnerability. # Requires a vulnerable environment of OpenHarmony <= v6.0 import os import sys def trigger_exploit(): print("[*] Attempting to exploit CVE-2026-28733...") # In a real scenario, the attacker would call a specific vulnerable API or system service. # Here we simulate the payload injection. try: # Simulating the vulnerable system call that leads to arbitrary code execution # This is a placeholder for the actual exploit logic. malicious_payload = "echo 'CVE-2026-28733 Exploited'" # The vulnerability allows local low-privileged users to execute commands # bypassing standard permission checks. os.system(malicious_payload) print("[+] Exploit successful! Arbitrary code executed.") return True except Exception as e: print(f"[-] Exploit failed: {e}") return False if __name__ == "__main__": trigger_exploit()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-28733", "sourceIdentifier": "[email protected]", "published": "2026-05-19T04:16:30.247", "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 arbitrary code execution."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/C:N/I:N/A:H", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.0, "impactScore": 4.0}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-416"}]}], "references": [{"url": "https://gitcode.com/openharmony/security/tree/master/zh/security-disclosure/2026/2026-05.md", "source": "[email protected]"}]}}