CVE-2026-2232
📋 TL;DR
This vulnerability allows unauthenticated attackers to perform time-based SQL injection attacks through the 'search' parameter in the Product Table and List Builder for WooCommerce Lite WordPress plugin. Attackers can extract sensitive information from the database by injecting malicious SQL queries. All WordPress sites using vulnerable versions of this plugin are affected.
💻 Affected Systems
- Product Table and List Builder for WooCommerce Lite WordPress plugin
⚠️ 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.
- Review the CVE details at NVD
- Check vendor security advisories for your specific version
- Test if the vulnerability is exploitable in your environment
- Consider updating to the latest version as a precaution
⚠️ Risk & Real-World Impact
Worst Case
Complete database compromise including extraction of sensitive user data, admin credentials, payment information, and potential privilege escalation.
Likely Case
Data exfiltration of product information, user emails, and potentially hashed passwords from the WordPress database.
If Mitigated
Limited information disclosure if database permissions are properly restricted and sensitive data is encrypted.
🎯 Exploit Status
Time-based SQL injection is well-documented and tools like sqlmap can automate exploitation. The vulnerability is in a search function which is commonly accessible.
🛠️ Fix & Mitigation
✅ Official Fix
Patch Version: Version 4.6.3 or later
Vendor Advisory: https://wordpress.org/plugins/wc-product-table-lite/#developers
Restart Required: No
Instructions:
1. Log into WordPress admin panel. 2. Go to Plugins → Installed Plugins. 3. Find 'Product Table and List Builder for WooCommerce Lite'. 4. Click 'Update Now' if available. 5. If no update appears, manually download version 4.6.3+ from WordPress.org and replace the plugin files.
🔧 Temporary Workarounds
Disable vulnerable plugin
allTemporarily deactivate the plugin until patched
wp plugin deactivate wc-product-table-lite
Web Application Firewall rule
linuxBlock SQL injection patterns in the search parameter
ModSecurity rule: SecRule ARGS:search "@detectSQLi" "id:1001,phase:2,deny,status:403"
🧯 If You Can't Patch
- Implement network-level restrictions to limit access to WordPress admin and plugin functions
- Enable database query logging and monitoring for suspicious SQL patterns
🔍 How to Verify
Check if Vulnerable:
Check WordPress admin → Plugins → Product Table and List Builder for WooCommerce Lite → Version. If version is 4.6.2 or lower, you are vulnerable.
Check Version:
wp plugin get wc-product-table-lite --field=version
Verify Fix Applied:
After updating, verify the plugin version shows 4.6.3 or higher in WordPress admin.
📡 Detection & Monitoring
Log Indicators:
- Unusually long search queries
- Multiple SQL error messages in WordPress debug logs
- Repeated requests with SQL keywords in search parameter
Network Indicators:
- HTTP POST requests to */wp-admin/admin-ajax.php* with 'search' parameter containing SQL syntax
- Abnormal response timing patterns indicating time-based SQL injection
SIEM Query:
source="wordpress.log" AND ("SQL syntax" OR "search%" AND (SELECT OR UNION OR SLEEP OR BENCHMARK))
🔗 References
- https://plugins.trac.wordpress.org/browser/wc-product-table-lite/tags/4.6.2/search.php#L549
- https://plugins.trac.wordpress.org/browser/wc-product-table-lite/tags/4.6.2/search.php#L574
- https://plugins.trac.wordpress.org/browser/wc-product-table-lite/tags/4.6.2/search.php#L598
- https://plugins.trac.wordpress.org/browser/wc-product-table-lite/trunk/search.php#L549
- https://plugins.trac.wordpress.org/browser/wc-product-table-lite/trunk/search.php#L574
- https://plugins.trac.wordpress.org/browser/wc-product-table-lite/trunk/search.php#L598
- https://plugins.trac.wordpress.org/changeset/3457877/
- https://www.wordfence.com/threat-intel/vulnerabilities/id/f2891f3d-9081-4a9f-8408-2373ce1d0306?source=cve