Security Vulnerability Report
中文
CVE-2026-8148 CVSS 7.8 HIGH

CVE-2026-8148

Published: 2026-05-08 05:16:12
Last Modified: 2026-05-11 12:59:39

Description

NAVER MYBOX Explorer for Windows before 3.0.11.160 allows a local attacker to escalate privileges to NT AUTHORITY\SYSTEM via registry manipulation due to improper privilege checks.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:navercorp:mybox:*:*:*:*:*:windows:*:* - VULNERABLE
NAVER MYBOX Explorer for Windows < 3.0.11.160

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# Disclaimer: This code is for educational purposes only to demonstrate the vulnerability concept. It does not contain a malicious payload. import winreg # Concept: Check if the registry key is writable by a low-privileged user def check_vulnerability(): key_path = r"SOFTWARE\NAVER\MYBOX" try: # Attempt to open the key with write access key = winreg.OpenKey(winreg.HKEY_LOCAL_MACHINE, key_path, 0, winreg.KEY_WRITE) print("[+] Registry key is writable. Vulnerability likely exists.") # In a real exploit, an attacker would write a path to a malicious DLL here # winreg.SetValueEx(key, "UpdatePath", 0, winreg.REG_SZ, "C:\\malicious\\evil.dll") winreg.CloseKey(key) except PermissionError: print("[-] Access denied. Registry key is protected.") except WindowsError: print("[-] Registry key not found.") if __name__ == "__main__": check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-8148", "sourceIdentifier": "[email protected]", "published": "2026-05-08T05:16:12.030", "lastModified": "2026-05-11T12:59:38.827", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "NAVER MYBOX Explorer for Windows before 3.0.11.160 allows a local attacker to escalate privileges to NT AUTHORITY\\SYSTEM via registry manipulation due to improper privilege checks."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.8, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-266"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:navercorp:mybox:*:*:*:*:*:windows:*:*", "versionEndExcluding": "3.0.11.160", "matchCriteriaId": "7A973496-E862-482B-A240-D2E376822DF0"}]}]}], "references": [{"url": "https://cve.naver.com/detail/cve-2026-8148.html", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}