CVE-2025-31794

5.4 MEDIUM

📋 TL;DR

This CVE describes a Missing Authorization vulnerability in the WR Price List Manager For Woocommerce WordPress plugin that allows attackers to delete arbitrary content without proper authentication. The vulnerability affects all WordPress sites running the plugin version 1.0.8 or earlier. Attackers can exploit this to remove important content from WooCommerce stores.

💻 Affected Systems

Products:
  • WR Price List Manager For Woocommerce WordPress plugin
Versions: n/a through 1.0.8
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Affects all WordPress installations with vulnerable plugin versions, regardless of WooCommerce configuration.

⚠️ 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 delete all product listings, pricing information, and critical WooCommerce content, causing complete store disruption and data loss.

🟠

Likely Case

Attackers delete selective product listings or pricing data, causing operational disruption and potential revenue loss.

🟢

If Mitigated

With proper access controls and monitoring, unauthorized deletion attempts would be blocked and logged for investigation.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

The vulnerability allows arbitrary content deletion without authentication, making exploitation straightforward for attackers.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 1.0.9 or later

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/wr-price-list-for-woocommerce/vulnerability/wordpress-wr-price-list-manager-for-woocommerce-plugin-1-0-8-arbitrary-content-deletion-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find 'WR Price List Manager For Woocommerce'. 4. Click 'Update Now' if update available. 5. If no update available, deactivate and remove plugin immediately.

🔧 Temporary Workarounds

Disable vulnerable plugin

all

Temporarily disable the WR Price List Manager plugin until patched version is available

wp plugin deactivate wr-price-list-for-woocommerce

Implement web application firewall rules

all

Block requests to vulnerable plugin endpoints

# Add to .htaccess for Apache:
RewriteRule ^wp-content/plugins/wr-price-list-for-woocommerce/.*$ - [F,L]
# Add to nginx config:
location ~* /wp-content/plugins/wr-price-list-for-woocommerce/ { deny all; }

🧯 If You Can't Patch

  • Remove the WR Price List Manager plugin completely and use alternative pricing solutions
  • Implement strict network segmentation and limit access to WordPress admin interface

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin > Plugins > Installed Plugins for 'WR Price List Manager For Woocommerce' version 1.0.8 or earlier

Check Version:

wp plugin get wr-price-list-for-woocommerce --field=version

Verify Fix Applied:

Verify plugin version is 1.0.9 or later in WordPress admin panel

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST requests to /wp-admin/admin-ajax.php with action parameters related to price list deletion
  • Multiple content deletion events from unauthenticated IP addresses
  • 404 errors for previously existing product pages

Network Indicators:

  • HTTP requests to plugin-specific endpoints without authentication headers
  • Burst of DELETE or POST requests to WooCommerce API endpoints

SIEM Query:

source="wordpress.log" AND (uri_path="/wp-admin/admin-ajax.php" AND action="*delete*" AND user="-")

🔗 References

📤 Share & Export