CVE-2025-30959

6.5 MEDIUM

📋 TL;DR

This CVE describes a missing authorization vulnerability in WPFactory's Product XML Feed Manager for WooCommerce plugin. It allows attackers to exploit incorrectly configured access controls, potentially accessing or modifying XML feed configurations without proper permissions. All WordPress sites using affected versions of this plugin are vulnerable.

💻 Affected Systems

Products:
  • Product XML Feed Manager for WooCommerce
Versions: All versions up to and including 2.9.2
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Affects WordPress installations with WooCommerce and the vulnerable plugin version.

⚠️ 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 XML feed configurations to inject malicious content, steal product data, or disrupt e-commerce operations by corrupting product feeds.

🟠

Likely Case

Unauthorized users could view or modify XML feed settings, potentially exposing sensitive product information or altering feed outputs.

🟢

If Mitigated

With proper access controls and authentication, only authorized administrators can manage XML feed configurations.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploitation requires some level of access but bypasses authorization checks.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 2.9.3 or later

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/product-xml-feeds-for-woocommerce/vulnerability/wordpress-product-xml-feed-manager-for-woocommerce-2-9-2-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 'Product XML Feed Manager for WooCommerce'. 4. Click 'Update Now' if update available. 5. Alternatively, download latest version from WordPress repository and replace plugin files.

🔧 Temporary Workarounds

Disable Plugin

all

Temporarily disable the vulnerable plugin until patched.

wp plugin deactivate product-xml-feeds-for-woocommerce

Restrict Access

linux

Implement IP whitelisting for WordPress admin area.

# Add to .htaccess for Apache: Order Deny,Allow
Deny from all
Allow from 192.168.1.0/24
# Add to nginx config: allow 192.168.1.0/24; deny all;

🧯 If You Can't Patch

  • Implement strict access controls and monitor for unauthorized XML feed modifications.
  • Consider using alternative XML feed plugins that are properly maintained and patched.

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Product XML Feed Manager for WooCommerce version. If version is 2.9.2 or lower, you are vulnerable.

Check Version:

wp plugin get product-xml-feeds-for-woocommerce --field=version

Verify Fix Applied:

After update, verify plugin version shows 2.9.3 or higher in WordPress admin.

📡 Detection & Monitoring

Log Indicators:

  • Unauthorized access attempts to XML feed management endpoints
  • Unexpected modifications to XML feed configurations

Network Indicators:

  • Unusual requests to /wp-admin/admin-ajax.php or plugin-specific endpoints

SIEM Query:

source="wordpress" AND (uri_path="/wp-admin/admin-ajax.php" OR uri_path CONTAINS "xml-feed") AND response_code=200 AND user_agent NOT IN ("admin-browser-1","admin-browser-2")

🔗 References

📤 Share & Export