CVE-2025-54750

7.5 HIGH

📋 TL;DR

This vulnerability allows attackers to include local files on the server through improper filename control in PHP include/require statements. It affects WordPress sites running FunnelKit Funnel Builder plugin versions up to 3.11.1, potentially leading to sensitive information disclosure or code execution.

💻 Affected Systems

Products:
  • Funnel Builder by FunnelKit (WordPress plugin)
Versions: n/a through 3.11.1
Operating Systems: All OS running PHP
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with vulnerable plugin version. PHP configuration may affect exploitability.

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

Full server compromise through local file inclusion leading to remote code execution, data theft, and complete site takeover.

🟠

Likely Case

Sensitive file disclosure (configuration files, database credentials), limited code execution, and privilege escalation.

🟢

If Mitigated

Limited impact with proper file permissions and security controls, potentially only information disclosure.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Public exploit details available. Attack requires web server access to vulnerable endpoint.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 3.11.2 or later

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/funnel-builder/vulnerability/wordpress-funnel-builder-by-funnelkit-plugin-3-11-1-local-file-inclusion-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel
2. Navigate to Plugins → Installed Plugins
3. Find 'Funnel Builder by FunnelKit'
4. Click 'Update Now' if available
5. If no update shows, manually download version 3.11.2+ from WordPress.org
6. Deactivate, delete old version, upload new version
7. Reactivate plugin

🔧 Temporary Workarounds

Disable vulnerable plugin

all

Temporarily deactivate Funnel Builder plugin until patched

wp plugin deactivate funnel-builder

Restrict file access

linux

Set proper file permissions and disable dangerous PHP functions

chmod 644 vulnerable_files.php
php_admin_value disable_functions "include,require"

🧯 If You Can't Patch

  • Implement web application firewall (WAF) rules to block file inclusion patterns
  • Restrict plugin access to authenticated users only via .htaccess or nginx rules

🔍 How to Verify

Check if Vulnerable:

Check WordPress plugin version in admin panel or via wp-cli: wp plugin get funnel-builder --field=version

Check Version:

wp plugin get funnel-builder --field=version

Verify Fix Applied:

Confirm plugin version is 3.11.2 or higher and test vulnerable endpoints

📡 Detection & Monitoring

Log Indicators:

  • Unusual file access patterns in PHP error logs
  • Requests with file inclusion parameters like ?file=../../etc/passwd

Network Indicators:

  • HTTP requests with path traversal sequences in parameters
  • Unexpected file downloads from plugin endpoints

SIEM Query:

source="web_server_logs" AND (uri="*funnel-builder*" AND (param="*../*" OR param="*php://*" OR param="*file=*"))

🔗 References

📤 Share & Export