CVE-2025-53564

7.1 HIGH

📋 TL;DR

This reflected cross-site scripting (XSS) vulnerability in the LambertGroup HTML5 Radio Player WPBakery Page Builder Addon allows attackers to inject malicious scripts into web pages. When users visit specially crafted URLs containing malicious input, their browsers execute attacker-controlled JavaScript in the context of the vulnerable site. This affects WordPress sites using the vulnerable plugin versions.

💻 Affected Systems

Products:
  • LambertGroup HTML5 Radio Player - WPBakery Page Builder Addon
Versions: All versions up to and including 2.5
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress with WPBakery Page Builder and the vulnerable addon installed. The vulnerability is in the plugin's input handling.

⚠️ 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 steal administrator session cookies, take over WordPress admin accounts, deface websites, or redirect users to malicious sites, potentially leading to complete site compromise.

🟠

Likely Case

Attackers steal user session cookies or credentials, perform actions on behalf of authenticated users, or redirect users to phishing/malware sites.

🟢

If Mitigated

With proper input validation and output encoding, malicious scripts would be neutralized before reaching users' browsers.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: UNKNOWN
Unauthenticated Exploit: ⚠️ Yes
Complexity: LOW

Reflected XSS typically requires user interaction (clicking malicious link) but can be easily weaponized via phishing or malicious ads.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Version after 2.5

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/lbg_radio_player_addon_visual_composer/vulnerability/wordpress-html5-radio-player-wpbakery-page-builder-addon-2-5-cross-site-scripting-xss-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find 'HTML5 Radio Player - WPBakery Page Builder Addon'. 4. Click 'Update Now' if update available. 5. If no update available, deactivate and remove plugin until patched version is released.

🔧 Temporary Workarounds

Input Validation Web Application Firewall Rule

all

Configure WAF to block requests containing suspicious script patterns targeting the vulnerable endpoint

WAF-specific configuration required

Content Security Policy (CSP)

all

Implement strict CSP headers to mitigate XSS impact by restricting script execution sources

Header set Content-Security-Policy "default-src 'self'; script-src 'self'"
Add to .htaccess or web server configuration

🧯 If You Can't Patch

  • Disable or remove the HTML5 Radio Player plugin completely
  • Implement strict input validation and output encoding at application level

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin → Plugins → Installed Plugins for 'HTML5 Radio Player - WPBakery Page Builder Addon' version 2.5 or earlier

Check Version:

wp plugin list --name='HTML5 Radio Player - WPBakery Page Builder Addon' --field=version

Verify Fix Applied:

Verify plugin version is greater than 2.5 in WordPress admin panel

📡 Detection & Monitoring

Log Indicators:

  • Unusual GET/POST requests containing script tags or JavaScript code to plugin endpoints
  • Multiple failed XSS attempts from same IP

Network Indicators:

  • HTTP requests with suspicious parameters containing <script>, javascript:, or encoded payloads

SIEM Query:

source="web_logs" AND (uri_path="*radio*" OR uri_path="*player*") AND (http_query="*<script>*" OR http_query="*javascript:*")

🔗 References

📤 Share & Export