CVE-2025-63024

5.4 MEDIUM

📋 TL;DR

This vulnerability allows unauthorized users to access functionality intended only for authenticated users in the Order Delivery Date for WooCommerce plugin. It affects all WordPress sites using this plugin up to version 4.3.1, potentially exposing order delivery information and settings.

💻 Affected Systems

Products:
  • Order Delivery Date for WooCommerce
Versions: n/a through <= 4.3.1
Operating Systems: All
Default Config Vulnerable: ⚠️ Yes
Notes: Affects WordPress installations with WooCommerce and this plugin enabled.

⚠️ Manual Verification Required

This CVE does not have specific version information in our database, so automatic vulnerability detection cannot determine if your system is affected.

Why? The CVE database entry doesn't specify which versions are vulnerable (no version ranges provided by the vendor/NVD).

🔒 Custom verification scripts are available for registered users. Sign up free to download automated test scripts.

Recommended Actions:
  1. Review the CVE details at NVD
  2. Check vendor security advisories for your specific version
  3. Test if the vulnerability is exploitable in your environment
  4. Consider updating to the latest version as a precaution

⚠️ Risk & Real-World Impact

🔴

Worst Case

Attackers could modify order delivery dates, access customer delivery information, or alter plugin settings affecting all orders.

🟠

Likely Case

Unauthorized viewing or modification of delivery dates for specific orders, potentially disrupting logistics.

🟢

If Mitigated

Minimal impact if proper authorization checks are implemented or plugin is disabled.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: UNKNOWN
Unauthenticated Exploit: ✅ No
Complexity: LOW

Requires some WordPress/WooCommerce knowledge but no authentication needed for exploitation.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: >4.3.1

Vendor Advisory: 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

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find 'Order Delivery Date for WooCommerce'. 4. Click 'Update Now' if available, or download latest version from WordPress repository. 5. Activate updated plugin.

🔧 Temporary Workarounds

Disable Plugin

all

Temporarily disable the vulnerable plugin until patched.

wp plugin deactivate order-delivery-date-for-woocommerce

Restrict Access via .htaccess

linux

Block access to plugin directories for unauthorized users.

# Add to .htaccess in wp-content/plugins/order-delivery-date-for-woocommerce/
Order deny,allow
Deny from all
Allow from 127.0.0.1

🧯 If You Can't Patch

  • Implement web application firewall (WAF) rules to block unauthorized access to plugin endpoints.
  • Monitor access logs for unusual requests to order-delivery-date-for-woocommerce plugin paths.

🔍 How to Verify

Check if Vulnerable:

Check plugin version in WordPress admin under Plugins > Installed Plugins. If version is 4.3.1 or lower, you are vulnerable.

Check Version:

wp plugin get order-delivery-date-for-woocommerce --field=version

Verify Fix Applied:

Verify plugin version is >4.3.1 and test that only authorized users can access delivery date functionality.

📡 Detection & Monitoring

Log Indicators:

  • Unauthorized POST/GET requests to /wp-content/plugins/order-delivery-date-for-woocommerce/
  • 403 errors followed by 200 successes from same IP

Network Indicators:

  • Unusual traffic patterns to plugin-specific endpoints from unauthenticated sources

SIEM Query:

source="wordpress.log" AND (uri_path="/wp-content/plugins/order-delivery-date-for-woocommerce/" OR plugin="order-delivery-date-for-woocommerce") AND response_code=200 AND user="-"

🔗 References

📤 Share & Export