CVE-2025-62886

8.8 HIGH

📋 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

Products:
  • wpdevart Pricing Table builder WordPress plugin
Versions: All versions up to and including 1.5.1
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires the plugin to be installed and activated on a WordPress site. The vulnerability is present in default configurations.

⚠️ 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 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.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

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

Vendor Advisory: https://patchstack.com/database/Wordpress/Plugin/wpdevart-pricing-table/vulnerability/wordpress-pricing-table-builder-plugin-1-5-1-cross-site-request-forgery-csrf-vulnerability?_s_id=cve

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

all

Disable the vulnerable plugin until patched

wp plugin deactivate wpdevart-pricing-table

CSRF Protection via .htaccess

linux

Add 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")

🔗 References

📤 Share & Export