CVE-2025-60458
📋 TL;DR
UxPlay 1.72 contains a double free vulnerability in RTSP request handling. Attackers can send specially crafted RTSP TEARDOWN requests to trigger multiple free() calls on the same memory address, potentially causing application crashes or denial of service. This affects all systems running UxPlay 1.72 with RTSP enabled.
💻 Affected Systems
- UxPlay
📦 What is this software?
Uxplay by Antimof
⚠️ Risk & Real-World Impact
Worst Case
Complete application crash leading to denial of service, potentially allowing further memory corruption attacks or remote code execution in specific scenarios.
Likely Case
Application crash and denial of service, disrupting screen mirroring functionality.
If Mitigated
Minimal impact if proper network segmentation and access controls prevent malicious RTSP requests.
🎯 Exploit Status
Proof-of-concept available on GitHub. Exploitation requires network access to RTSP port (typically 7100).
🛠️ Fix & Mitigation
✅ Official Fix
Patch Version: Not available
Vendor Advisory: Not available
Restart Required: No
Instructions:
No official patch available. Consider upgrading to a newer version if available or applying workarounds.
🔧 Temporary Workarounds
Network Access Restriction
linuxRestrict network access to UxPlay RTSP port (default 7100) using firewall rules.
sudo ufw deny 7100
sudo iptables -A INPUT -p tcp --dport 7100 -j DROP
Disable RTSP Service
linuxStop UxPlay service or disable RTSP functionality if possible.
sudo systemctl stop uxplay
pkill -f uxplay
🧯 If You Can't Patch
- Implement strict network segmentation to isolate UxPlay instances
- Monitor for abnormal RTSP TEARDOWN requests and implement rate limiting
🔍 How to Verify
Check if Vulnerable:
Check if UxPlay version is 1.72 by running 'uxplay --version' or checking process information.
Check Version:
uxplay --version
Verify Fix Applied:
Verify UxPlay is not running version 1.72 or that network restrictions are properly applied.
📡 Detection & Monitoring
Log Indicators:
- Multiple RTSP TEARDOWN requests from single source
- UxPlay process crashes or abnormal termination
Network Indicators:
- Unusual RTSP TEARDOWN request patterns
- Traffic to port 7100 with malformed RTSP headers
SIEM Query:
source="uxplay.log" AND "TEARDOWN" AND ("crash" OR "segmentation fault")