CVE-2026-24390

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 using the Kentha Elementor Widgets plugin versions before 3.1, potentially leading to sensitive information disclosure or code execution.

💻 Affected Systems

Products:
  • Kentha Elementor Widgets WordPress Plugin
Versions: All versions before 3.1
Operating Systems: Any OS running WordPress with PHP
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with the vulnerable plugin activated. PHP configuration (allow_url_include) 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, sensitive file disclosure (config files, passwords), and complete site takeover.

🟠

Likely Case

Sensitive information disclosure (database credentials, configuration files) and limited file system access through path traversal.

🟢

If Mitigated

Limited impact with proper file permissions and web server restrictions, potentially only allowing access to publicly readable files.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Simple HTTP requests can trigger the vulnerability. Public exploit code is available in vulnerability databases.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 3.1

Vendor Advisory: https://patchstack.com/database/Wordpress/Plugin/kentha-elementor/vulnerability/wordpress-kentha-elementor-widgets-plugin-3-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 'Kentha Elementor Widgets'. 4. Click 'Update Now' if available, or download version 3.1+ from WordPress repository. 5. Activate the updated plugin.

🔧 Temporary Workarounds

Disable vulnerable plugin

all

Temporarily disable the Kentha Elementor Widgets plugin until patched

wp plugin deactivate kentha-elementor

Restrict PHP file inclusion

linux

Configure PHP to disable dangerous functions and restrict file inclusion paths

Add to php.ini: allow_url_include = Off
Add to 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 system permissions and implement strict access controls on sensitive directories

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel → Plugins → Kentha Elementor Widgets version number

Check Version:

wp plugin get kentha-elementor --field=version

Verify Fix Applied:

Verify plugin version is 3.1 or higher in WordPress admin panel

📡 Detection & Monitoring

Log Indicators:

  • Unusual file paths in PHP error logs
  • Multiple requests with '../' patterns in parameters
  • Access to sensitive files like /etc/passwd in web logs

Network Indicators:

  • HTTP requests with path traversal sequences (../) in query parameters
  • Unexpected file downloads from web server

SIEM Query:

source="web_logs" AND (uri="*../*" OR uri="*/etc/passwd*" OR uri="*/wp-config.php*")

🔗 References

📤 Share & Export