CVE-2025-31016

7.5 HIGH

📋 TL;DR

This CVE describes a PHP Local File Inclusion vulnerability in the JetWooBuilder WordPress plugin. Attackers can include arbitrary local files through improper filename control in include/require statements, potentially leading to sensitive information disclosure or code execution. All WordPress sites using JetWooBuilder versions up to 2.1.18 are affected.

💻 Affected Systems

Products:
  • Crocoblock JetWooBuilder WordPress Plugin
Versions: n/a through 2.1.18
Operating Systems: Any OS running PHP and WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with JetWooBuilder plugin enabled. 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 system compromise, data exfiltration, and website defacement.

🟠

Likely Case

Sensitive file disclosure (configuration files, database credentials) and limited code execution within web server context.

🟢

If Mitigated

Information disclosure limited to publicly accessible files 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 authenticated users or through other attack vectors.

🎯 Exploit Status

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

Exploitation requires understanding of PHP file inclusion vulnerabilities and WordPress plugin structure. No authentication required based on CWE-98 classification.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 2.1.19 or later

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/jet-woo-builder/vulnerability/wordpress-jetwoobuilder-plugin-2-1-18-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 JetWooBuilder and click 'Update Now'. 4. Verify update completes successfully.

🔧 Temporary Workarounds

Disable JetWooBuilder Plugin

WordPress

Temporarily disable the vulnerable plugin until patching is possible

wp plugin deactivate jet-woo-builder

🧯 If You Can't Patch

  • Implement web application firewall (WAF) rules to block file inclusion patterns
  • Restrict file permissions and implement strict directory traversal protections

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel → Plugins → JetWooBuilder version. If version is 2.1.18 or lower, system is vulnerable.

Check Version:

wp plugin get jet-woo-builder --field=version

Verify Fix Applied:

Verify JetWooBuilder version is 2.1.19 or higher in WordPress admin panel.

📡 Detection & Monitoring

Log Indicators:

  • Unusual file access patterns in web server logs
  • PHP include/require errors with suspicious file paths
  • Requests containing '../' or similar path traversal sequences

Network Indicators:

  • HTTP requests with file inclusion parameters targeting JetWooBuilder endpoints

SIEM Query:

web_access_logs WHERE url CONTAINS 'jet-woo-builder' AND (url CONTAINS '../' OR url CONTAINS 'include' OR url CONTAINS 'require')

🔗 References

📤 Share & Export