CVE-2024-53739

8.1 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 Cool Plugins Cryptocurrency Widgets For Elementor plugin. Attackers can potentially read sensitive files or execute code depending on server configuration.

💻 Affected Systems

Products:
  • Cool Plugins Cryptocurrency Widgets For Elementor WordPress Plugin
Versions: n/a through 1.6.4
Operating Systems: Any OS running WordPress with PHP
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with the vulnerable plugin activated.

📦 What is this software?

⚠️ 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 reading of sensitive files like configuration files, potentially exposing database credentials.

🟢

If Mitigated

Limited impact if proper file permissions and security controls restrict file access.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploitation is straightforward with publicly available proof-of-concept code.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 1.6.5 or later

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/cryptocurrency-widgets-for-elementor/vulnerability/wordpress-cryptocurrency-widgets-for-elementor-plugin-1-6-4-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 'Cryptocurrency Widgets For Elementor'
4. Click 'Update Now' if update is available
5. Alternatively, download version 1.6.5+ from WordPress repository and manually update

🔧 Temporary Workarounds

Disable vulnerable plugin

all

Temporarily deactivate the plugin until patched

wp plugin deactivate cryptocurrency-widgets-for-elementor

Restrict PHP file functions

all

Use PHP configuration to disable dangerous functions

Add 'disable_functions = include,require' to php.ini

🧯 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 panel → Plugins → Cryptocurrency Widgets For Elementor version

Check Version:

wp plugin get cryptocurrency-widgets-for-elementor --field=version

Verify Fix Applied:

Verify plugin version is 1.6.5 or higher in WordPress admin

📡 Detection & Monitoring

Log Indicators:

  • Unusual file access patterns in PHP error logs
  • Requests with file inclusion parameters like '?file=' or '?page='

Network Indicators:

  • HTTP requests with file path traversal patterns
  • Requests to plugin-specific endpoints with file parameters

SIEM Query:

web_requests WHERE url CONTAINS 'cryptocurrency-widgets' AND (url CONTAINS 'file=' OR url CONTAINS 'include=' OR url CONTAINS 'require=')

🔗 References

📤 Share & Export