CVE-2025-11726

4.3 MEDIUM

📋 TL;DR

The Beaver Builder WordPress plugin has a missing authorization vulnerability that allows authenticated users with contributor-level access or higher to modify global color and background presets that affect all Beaver Builder content site-wide. This affects all versions up to and including 2.9.4. Attackers can add, modify, or delete these presets through insufficiently protected REST API endpoints.

💻 Affected Systems

Products:
  • Beaver Builder – WordPress Page Builder
Versions: All versions up to and including 2.9.4
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress with Beaver Builder plugin installed and at least one user with contributor role or higher.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

An attacker with contributor access could modify global presets to inject malicious CSS/JavaScript, potentially leading to site defacement, credential theft via phishing, or content manipulation affecting all Beaver Builder pages.

🟠

Likely Case

Malicious contributors or compromised accounts could alter site appearance, disrupt design consistency, or inject minor malicious content through preset modifications.

🟢

If Mitigated

With proper user access controls and monitoring, impact is limited to authorized users making legitimate preset changes.

🌐 Internet-Facing: MEDIUM
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploitation requires authenticated access but is straightforward via REST API calls to vulnerable endpoints.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 2.9.5

Vendor Advisory: https://plugins.trac.wordpress.org/changeset?sfp_email=&sfph_mail=&reponame=&old=3406987%40beaver-builder-lite-version&new=3406987%40beaver-builder-lite-version&sfp_email=&sfph_mail=

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find Beaver Builder plugin. 4. Click 'Update Now' if update is available. 5. Alternatively, download version 2.9.5+ from WordPress plugin repository and manually update.

🔧 Temporary Workarounds

Restrict REST API Access

all

Temporarily restrict access to vulnerable REST API endpoints using security plugins or .htaccess rules.

# Add to .htaccess or web server config to block fl-controls/v1 endpoints
RewriteRule ^wp-json/fl-controls/v1/.*$ - [F,L]

Limit Contributor Roles

all

Temporarily elevate contributor users to higher roles only when necessary and monitor their activities.

🧯 If You Can't Patch

  • Implement strict user access controls and review contributor-level permissions.
  • Monitor REST API logs for suspicious activity targeting fl-controls/v1 endpoints.

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel → Plugins → Beaver Builder version. If version is 2.9.4 or lower, system is vulnerable.

Check Version:

wp plugin list --name=beaver-builder --field=version

Verify Fix Applied:

Verify Beaver Builder plugin version is 2.9.5 or higher in WordPress admin panel.

📡 Detection & Monitoring

Log Indicators:

  • REST API requests to /wp-json/fl-controls/v1/ endpoints from non-admin users
  • Unauthorized modifications to Beaver Builder global presets

Network Indicators:

  • HTTP POST/PUT/DELETE requests to /wp-json/fl-controls/v1/* endpoints

SIEM Query:

source="wordpress_logs" AND (uri_path="/wp-json/fl-controls/v1/*" AND user_role!="administrator")

🔗 References

📤 Share & Export