CVE-2025-15058
📋 TL;DR
This vulnerability allows authenticated WordPress users with Contributor-level access or higher to inject malicious scripts into pricing tables via the 'table_currency' parameter. The injected scripts execute whenever users view affected pages, enabling session hijacking, credential theft, or website defacement. All WordPress sites using the Responsive Pricing Table plugin up to version 5.1.12 are affected.
💻 Affected Systems
- Responsive Pricing Table 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 gain administrative access, steal sensitive data, install backdoors, or redirect users to malicious sites, potentially compromising the entire WordPress installation and associated databases.
Likely Case
Attackers deface websites, steal user sessions and credentials, or redirect users to phishing pages, damaging reputation and potentially leading to data breaches.
If Mitigated
With proper input validation and output escaping, the vulnerability is prevented, though legacy vulnerable installations remain at risk until patched.
🎯 Exploit Status
Exploitation requires authenticated access but is straightforward once credentials are obtained. The vulnerability is well-documented and easy to weaponize.
🛠️ Fix & Mitigation
✅ Official Fix
Patch Version: 5.1.13 or later
Vendor Advisory: https://wordpress.org/plugins/dk-pricr-responsive-pricing-table/
Restart Required: No
Instructions:
1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find 'Responsive Pricing Table' and click 'Update Now'. 4. Verify the plugin version is 5.1.13 or higher.
🔧 Temporary Workarounds
Disable Plugin
allTemporarily disable the vulnerable plugin until patched.
wp plugin deactivate dk-pricr-responsive-pricing-table
Restrict User Roles
allLimit Contributor and higher roles to trusted users only.
🧯 If You Can't Patch
- Implement web application firewall (WAF) rules to block XSS payloads in 'table_currency' parameter
- Remove Contributor role access from untrusted users and implement strict user role management
🔍 How to Verify
Check if Vulnerable:
Check WordPress admin panel > Plugins > Installed Plugins for 'Responsive Pricing Table' version 5.1.12 or lower.
Check Version:
wp plugin get dk-pricr-responsive-pricing-table --field=version
Verify Fix Applied:
Verify plugin version is 5.1.13 or higher in WordPress admin panel and test 'table_currency' parameter with XSS payloads (in safe environment).
📡 Detection & Monitoring
Log Indicators:
- Unusual POST requests to wp-admin/admin-ajax.php with 'table_currency' parameter containing script tags or JavaScript code
- Multiple failed login attempts followed by successful Contributor-level login
Network Indicators:
- Inbound traffic from unusual locations to WordPress admin endpoints
- Outbound connections to suspicious domains from your WordPress server
SIEM Query:
source="wordpress.log" AND ("table_currency" AND ("<script>" OR "javascript:" OR "onerror=" OR "onload="))