CVE-2025-14365

5.3 MEDIUM

📋 TL;DR

This vulnerability in the Eyewear prescription form WordPress plugin allows unauthenticated attackers to delete arbitrary WooCommerce product categories, including all child categories, via the 'catIds' parameter. All WordPress sites using this plugin up to version 6.0.1 are affected. The issue stems from missing authorization checks on the RemoveItems AJAX action.

💻 Affected Systems

Products:
  • Eyewear prescription form WordPress plugin
Versions: All versions up to and including 6.0.1
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WooCommerce to be installed for the vulnerability to have impact, but the vulnerable code exists regardless.

⚠️ 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

Complete deletion of all WooCommerce product categories, disrupting e-commerce functionality and requiring full category restoration from backups.

🟠

Likely Case

Targeted deletion of specific product categories, causing temporary disruption to product organization and sales.

🟢

If Mitigated

No impact if proper authorization controls are implemented or plugin is updated/disabled.

🌐 Internet-Facing: HIGH - WordPress sites are typically internet-facing, and the vulnerability requires no authentication.
🏢 Internal Only: LOW - Internal-only WordPress installations would still be vulnerable but have reduced attack surface.

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: LIKELY
Unauthenticated Exploit: ⚠️ Yes
Complexity: LOW

Simple HTTP request to the vulnerable AJAX endpoint with catIds parameter. No special tools or skills required.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 6.0.2 or later

Vendor Advisory: https://plugins.trac.wordpress.org/browser/eyewear-prescription-form/tags/6.0.2/

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find 'Eyewear prescription form' plugin. 4. Click 'Update Now' if update available. 5. If no update available, deactivate and remove plugin.

🔧 Temporary Workarounds

Disable plugin

all

Deactivate the vulnerable plugin to prevent exploitation

wp plugin deactivate eyewear-prescription-form

Block AJAX endpoint

linux

Block access to the vulnerable AJAX endpoint via web server configuration

# Apache: RewriteRule ^wp-admin/admin-ajax\.php.*RemoveItems - [F]
# Nginx: location ~* RemoveItems { deny all; }

🧯 If You Can't Patch

  • Implement web application firewall (WAF) rules to block requests containing 'RemoveItems' action
  • Restrict access to wp-admin/admin-ajax.php to authenticated users only

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin → Plugins → Installed Plugins for 'Eyewear prescription form' version 6.0.1 or earlier

Check Version:

wp plugin get eyewear-prescription-form --field=version

Verify Fix Applied:

Verify plugin version is 6.0.2 or later, or plugin is deactivated/removed

📡 Detection & Monitoring

Log Indicators:

  • HTTP POST requests to /wp-admin/admin-ajax.php with 'action=RemoveItems' parameter
  • Unusual category deletion events in WooCommerce logs

Network Indicators:

  • POST requests to admin-ajax.php with catIds parameter from unauthenticated sources

SIEM Query:

source="web_access_logs" AND uri="/wp-admin/admin-ajax.php" AND post_data="*action=RemoveItems*" AND NOT user_agent="*WordPress*"

🔗 References

📤 Share & Export