CVE-2025-62886
📋 TL;DR
This CVE describes a Cross-Site Request Forgery (CSRF) vulnerability in the wpdevart Pricing Table builder WordPress plugin that leads to Stored Cross-Site Scripting (XSS). Attackers can trick authenticated administrators into executing malicious actions that inject persistent scripts into pricing tables, affecting all WordPress sites using vulnerable versions of this plugin.
💻 Affected Systems
- wpdevart Pricing Table builder 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
Attackers could inject malicious JavaScript that steals administrator credentials, redirects users to malicious sites, or performs administrative actions on behalf of authenticated users, potentially leading to complete site compromise.
Likely Case
Attackers inject tracking scripts, deface pricing tables, or steal session cookies from users viewing the compromised pricing tables.
If Mitigated
With proper CSRF tokens and input validation, the vulnerability would be prevented, limiting impact to minor data manipulation attempts.
🎯 Exploit Status
Exploitation requires tricking an authenticated administrator into clicking a malicious link or visiting a compromised page. The CSRF to XSS chain makes this relatively straightforward for attackers.
🛠️ Fix & Mitigation
✅ Official Fix
Patch Version: 1.5.2 or later
Restart Required: No
Instructions:
1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find 'Pricing Table builder' and click 'Update Now' if available. 4. Alternatively, download version 1.5.2+ from WordPress.org and manually replace the plugin files.
🔧 Temporary Workarounds
Temporary Plugin Deactivation
allDisable the vulnerable plugin until patched
wp plugin deactivate wpdevart-pricing-table
CSRF Protection via .htaccess
linuxAdd basic CSRF protection headers at web server level
Header set X-Frame-Options "DENY"
Header set Content-Security-Policy "frame-ancestors 'none'"
🧯 If You Can't Patch
- Disable the wpdevart Pricing Table builder plugin completely
- Implement web application firewall rules to block suspicious pricing table modification requests
🔍 How to Verify
Check if Vulnerable:
Check WordPress admin → Plugins → Installed Plugins for 'Pricing Table builder' version number
Check Version:
wp plugin get wpdevart-pricing-table --field=version
Verify Fix Applied:
Verify plugin version is 1.5.2 or higher in WordPress admin panel
📡 Detection & Monitoring
Log Indicators:
- Unusual POST requests to /wp-admin/admin-ajax.php with pricing table parameters
- Multiple failed CSRF token validations in WordPress logs
Network Indicators:
- Unexpected JavaScript injection in pricing table content responses
- Suspicious referrer headers in admin area requests
SIEM Query:
source="wordpress.log" AND "admin-ajax.php" AND "action=wpdevart_pricing_table" AND ("update" OR "save")