CVE-2025-69055

6.5 MEDIUM

📋 TL;DR

This path traversal vulnerability in SeaTheme BM Content Builder WordPress plugin allows attackers to download arbitrary files from the server by manipulating file paths. It affects all WordPress sites running BM Content Builder plugin versions up to and including 3.16.3.

💻 Affected Systems

Products:
  • SeaTheme BM Content Builder WordPress Plugin
Versions: All versions up to and including 3.16.3
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Affects all WordPress installations with vulnerable plugin versions installed and activated.

⚠️ 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

Complete server compromise through downloading sensitive files like wp-config.php containing database credentials, SSH keys, or other configuration files.

🟠

Likely Case

Unauthorized access to sensitive WordPress configuration files, potentially leading to database compromise or privilege escalation.

🟢

If Mitigated

Limited file access restricted to web-accessible directories if proper file permissions are configured.

🌐 Internet-Facing: HIGH - WordPress plugins are typically internet-facing and this vulnerability requires no authentication.
🏢 Internal Only: MEDIUM - Internal WordPress installations could still be exploited by malicious insiders or compromised internal systems.

🎯 Exploit Status

Public PoC: ⚠️ Yes
Weaponized: LIKELY
Unauthenticated Exploit: ⚠️ Yes
Complexity: LOW

Path traversal vulnerabilities are commonly exploited with simple HTTP requests. The Patchstack reference indicates this is an arbitrary file download vulnerability.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Version after 3.16.3

Vendor Advisory: https://patchstack.com/database/Wordpress/Plugin/bm-builder/vulnerability/wordpress-bm-content-builder-plugin-3-16-3-arbitrary-file-download-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find BM Content Builder. 4. Click 'Update Now' if update available. 5. If no update available, deactivate and remove plugin immediately.

🔧 Temporary Workarounds

Web Application Firewall Rule

all

Block path traversal patterns in HTTP requests

WAF specific - configure to block requests containing '../', '..\', or absolute paths

File Permission Hardening

linux

Restrict file permissions on sensitive directories

chmod 640 wp-config.php
chmod 600 ~/.ssh/*
chmod 750 /etc/

🧯 If You Can't Patch

  • Immediately deactivate and remove the BM Content Builder plugin from WordPress
  • Implement strict file system permissions and monitor for unusual file access patterns

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel → Plugins → Installed Plugins for BM Content Builder version ≤ 3.16.3

Check Version:

wp plugin list --name=bm-builder --field=version (if WP-CLI installed)

Verify Fix Applied:

Verify plugin version is > 3.16.3 or plugin is completely removed

📡 Detection & Monitoring

Log Indicators:

  • HTTP requests with '../' patterns to plugin endpoints
  • Unusual file downloads from /wp-content/plugins/bm-builder/

Network Indicators:

  • GET requests containing path traversal sequences to plugin URLs

SIEM Query:

source="web_logs" AND (uri="*../*" OR uri="*..\\*") AND uri="*/bm-builder/*"

🔗 References

📤 Share & Export