CVE-2025-62008

8.8 HIGH

📋 TL;DR

This vulnerability allows attackers to execute arbitrary PHP code through insecure deserialization in the Product Table For WooCommerce WordPress plugin. It affects all WordPress sites using this plugin up to version 1.2.4. Successful exploitation could lead to complete site compromise.

💻 Affected Systems

Products:
  • Product Table For WooCommerce WordPress plugin
Versions: n/a through <= 1.2.4
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: All WordPress installations with vulnerable plugin versions are affected regardless of 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

Remote code execution leading to complete server takeover, data theft, malware installation, and website defacement.

🟠

Likely Case

Unauthenticated attackers gaining administrative access to WordPress, installing backdoors, and stealing sensitive data.

🟢

If Mitigated

Attack attempts logged but blocked by proper input validation and security controls.

🌐 Internet-Facing: HIGH
🏢 Internal Only: LOW

🎯 Exploit Status

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

Public exploit details available on Patchstack; simple HTTP requests can trigger the vulnerability.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 1.2.5 or later

Vendor Advisory: https://patchstack.com/database/Wordpress/Plugin/product-table-for-woocommerce/vulnerability/wordpress-product-table-for-woocommerce-plugin-1-2-4-php-object-injection-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel
2. Navigate to Plugins → Installed Plugins
3. Find 'Product Table For WooCommerce'
4. Click 'Update Now' if update available
5. If no update available, deactivate and remove plugin
6. Install fresh version 1.2.5+ from WordPress repository

🔧 Temporary Workarounds

Disable vulnerable plugin

all

Temporarily disable the plugin until patched version is available

wp plugin deactivate product-table-for-woocommerce

Web Application Firewall rule

all

Block requests containing serialized PHP objects in POST data

🧯 If You Can't Patch

  • Implement strict input validation to reject serialized data in plugin parameters
  • Deploy web application firewall with rules to detect and block PHP object injection attempts

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin → Plugins → Product Table For WooCommerce version number

Check Version:

wp plugin get product-table-for-woocommerce --field=version

Verify Fix Applied:

Confirm plugin version is 1.2.5 or higher in WordPress admin

📡 Detection & Monitoring

Log Indicators:

  • POST requests to /wp-admin/admin-ajax.php with serialized data in parameters
  • Unusual PHP error logs mentioning unserialize() or __wakeup()

Network Indicators:

  • HTTP POST requests containing serialized PHP object strings (O:8:"stdClass")

SIEM Query:

source="web_logs" AND uri="/wp-admin/admin-ajax.php" AND (POST_data CONTAINS "O:" OR POST_data CONTAINS "a:" AND POST_data CONTAINS "s:")

🔗 References

📤 Share & Export