CVE-2024-43330
📋 TL;DR
This Cross-Site Scripting (XSS) vulnerability in PowerPack for Beaver Builder allows attackers to inject malicious scripts into web pages viewed by other users. It affects WordPress sites using the PowerPack plugin, potentially compromising user sessions and stealing sensitive data. All sites running vulnerable versions are at risk.
💻 Affected Systems
- PowerPack for Beaver Builder WordPress Plugin
📦 What is this software?
⚠️ Risk & Real-World Impact
Worst Case
Attackers could steal administrator credentials, take over WordPress sites, install backdoors, deface websites, or redirect visitors to malicious sites.
Likely Case
Session hijacking, cookie theft, credential harvesting, or displaying malicious content to users.
If Mitigated
Limited impact with proper input validation, output encoding, and Content Security Policy (CSP) headers in place.
🎯 Exploit Status
Reflected XSS typically requires user interaction (clicking malicious link) but is easy to exploit once discovered.
🛠️ Fix & Mitigation
✅ Official Fix
Patch Version: 2.37.4
Restart Required: No
Instructions:
1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find 'PowerPack for Beaver Builder'. 4. Click 'Update Now' if available. 5. Alternatively, download version 2.37.4+ from WordPress repository and manually update.
🔧 Temporary Workarounds
Temporary Plugin Deactivation
allDisable the vulnerable plugin until patched
wp plugin deactivate bbpowerpack
Implement Content Security Policy
allAdd CSP headers to restrict script execution
Add to .htaccess: Header set Content-Security-Policy "default-src 'self'; script-src 'self'"
Add to nginx config: add_header Content-Security-Policy "default-src 'self'; script-src 'self'";
🧯 If You Can't Patch
- Disable PowerPack plugin completely until patched
- Implement web application firewall (WAF) rules to block XSS payloads
🔍 How to Verify
Check if Vulnerable:
Check WordPress admin → Plugins → PowerPack for Beaver Builder version. If version is below 2.37.4, you are vulnerable.
Check Version:
wp plugin get bbpowerpack --field=version
Verify Fix Applied:
Confirm plugin version is 2.37.4 or higher in WordPress admin panel.
📡 Detection & Monitoring
Log Indicators:
- Unusual GET/POST requests with script tags or JavaScript payloads
- Multiple failed XSS attempts in web server logs
Network Indicators:
- HTTP requests containing <script>, javascript:, or encoded XSS payloads in query parameters
SIEM Query:
source="web_logs" AND ("<script" OR "javascript:" OR "onload=" OR "onerror=") AND uri_path="*powerpack*"