CVE-2025-26979

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.9.0, potentially leading to sensitive information disclosure or code execution.

💻 Affected Systems

Products:
  • Funnel Builder by FunnelKit (WordPress plugin)
Versions: n/a through 3.9.0
Operating Systems: Any 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

Remote code execution leading to complete server compromise, data theft, and website defacement.

🟠

Likely Case

Local file inclusion allowing sensitive file reading (configuration files, credentials) and limited code execution.

🟢

If Mitigated

Limited impact if proper file permissions and web server configurations restrict file access.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: UNKNOWN
Unauthenticated Exploit: ✅ No
Complexity: MEDIUM

Exploitation requires specific conditions and knowledge of target environment. No public exploit code available at this time.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Version after 3.9.0

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/funnel-builder/vulnerability/wordpress-funnel-builder-by-funnelkit-plugin-3-9-0-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 update available
5. If no update available, deactivate and remove plugin until patch is released

🔧 Temporary Workarounds

Disable vulnerable plugin

all

Temporarily deactivate Funnel Builder plugin until patched version is available

Restrict PHP file inclusion

all

Configure PHP to disable allow_url_include and restrict open_basedir

php.ini: allow_url_include = Off
php.ini: open_basedir = /var/www/html

🧯 If You Can't Patch

  • Implement web application firewall (WAF) rules to block file inclusion patterns
  • Restrict file permissions and implement strict access controls on sensitive directories

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin → Plugins → Funnel Builder by FunnelKit version. If version is 3.9.0 or earlier, you are vulnerable.

Check Version:

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

Verify Fix Applied:

Verify plugin version is higher than 3.9.0 in WordPress admin panel.

📡 Detection & Monitoring

Log Indicators:

  • Unusual file access patterns in PHP error logs
  • Multiple include/require attempts with suspicious file paths
  • HTTP requests containing '../' or similar path traversal patterns

Network Indicators:

  • HTTP requests with file inclusion parameters
  • Unusual POST/GET requests to plugin endpoints

SIEM Query:

source="web_server_logs" AND (uri="*funnel-builder*" AND (param="*include*" OR param="*require*" OR uri="*../*"))

🔗 References

📤 Share & Export