CVE-2025-48088

6.5 MEDIUM

📋 TL;DR

This stored XSS vulnerability in Ultimate Addons for WPBakery Page Builder allows attackers to inject malicious scripts into WordPress pages. When users view compromised pages, the scripts execute in their browsers, potentially stealing session cookies or performing actions on their behalf. All WordPress sites using vulnerable versions of this plugin are affected.

💻 Affected Systems

Products:
  • Ultimate Addons for WPBakery Page Builder
Versions: All versions before 3.21.1
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress with WPBakery Page Builder and the Ultimate Addons plugin installed.

⚠️ 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 credentials, take over WordPress sites, deface websites, or redirect visitors to malicious sites.

🟠

Likely Case

Attackers inject malicious JavaScript to steal user session cookies, potentially compromising user accounts and performing unauthorized actions.

🟢

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: ✅ No
Complexity: MEDIUM

Exploitation requires ability to inject malicious input into web page generation, typically through plugin features that accept user input.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 3.21.1

Vendor Advisory: https://patchstack.com/database/WordPress/Plugin/ultimate_vc_addons/vulnerability/wordpress-ultimate-addons-for-wpbakery-page-builder-plugin-3-21-1-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 'Ultimate Addons for WPBakery Page Builder'. 4. Click 'Update Now' if update is available. 5. Alternatively, download version 3.21.1+ from WordPress repository and manually update.

🔧 Temporary Workarounds

Disable vulnerable plugin features

all

Identify and disable specific plugin features that accept user input until patch can be applied.

Implement Content Security Policy

all

Add CSP headers to restrict script execution sources and mitigate XSS impact.

Header set Content-Security-Policy "default-src 'self'; script-src 'self'" in .htaccess or web server config

🧯 If You Can't Patch

  • Temporarily disable the Ultimate Addons plugin if not critical for site functionality
  • Implement web application firewall (WAF) rules to block XSS payloads targeting this plugin

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Installed Plugins for Ultimate Addons version. If version is below 3.21.1, you are vulnerable.

Check Version:

wp plugin list --name='Ultimate Addons for WPBakery Page Builder' --field=version (if WP-CLI installed)

Verify Fix Applied:

After updating, verify plugin version shows 3.21.1 or higher in WordPress plugins list.

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST requests to plugin endpoints containing script tags or JavaScript code
  • Multiple failed attempts to access plugin admin features

Network Indicators:

  • HTTP requests with suspicious parameters containing <script> tags or JavaScript payloads

SIEM Query:

source="web_logs" AND (uri_path="/wp-admin/admin-ajax.php" OR uri_path CONTAINS "ultimate_vc_addons") AND (http_method="POST" AND (request_body CONTAINS "<script>" OR request_body CONTAINS "javascript:"))

🔗 References

📤 Share & Export