CVE-2025-23952

8.1 HIGH

📋 TL;DR

This vulnerability allows attackers to include local files on the server through the WordPress custom-field-list-widget plugin. Attackers can potentially read sensitive files or execute code by manipulating file inclusion parameters. This affects WordPress sites using custom-field-list-widget plugin versions up to 1.5.1.

💻 Affected Systems

Products:
  • WordPress custom-field-list-widget plugin
Versions: All versions up to and including 1.5.1
Operating Systems: Any OS running PHP
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with the vulnerable plugin activated.

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

Sensitive file disclosure including configuration files, database credentials, and user data.

🟢

If Mitigated

Limited impact with proper file permissions and security controls preventing code execution.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploitation requires understanding of PHP file inclusion vulnerabilities and WordPress plugin structure.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Version after 1.5.1

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/custom-field-list-widget/vulnerability/wordpress-custom-field-list-widget-plugin-1-5-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 'custom-field-list-widget'. 4. Click 'Update Now' if update available. 5. If no update, deactivate and delete plugin.

🔧 Temporary Workarounds

Disable vulnerable plugin

all

Deactivate the custom-field-list-widget plugin to remove attack surface

Restrict file permissions

linux

Set strict file permissions on sensitive directories and configuration files

chmod 600 wp-config.php
chmod 755 wp-content/plugins/

🧯 If You Can't Patch

  • Implement web application firewall (WAF) rules to block file inclusion patterns
  • Restrict plugin functionality to authenticated users only if possible

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Installed Plugins for custom-field-list-widget version 1.5.1 or earlier

Check Version:

wp plugin list --name=custom-field-list-widget --field=version

Verify Fix Applied:

Verify plugin version is higher than 1.5.1 or plugin is removed

📡 Detection & Monitoring

Log Indicators:

  • Unusual file paths in PHP include/require statements
  • Multiple failed attempts to access sensitive files

Network Indicators:

  • HTTP requests with suspicious file path parameters
  • Patterns of file inclusion attempts

SIEM Query:

source="web_server" AND ("include" OR "require") AND (".." OR "/etc/" OR "/proc/")

🔗 References

📤 Share & Export