CVE-2025-60194

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 Premmerce Product Search for WooCommerce plugin, potentially leading to sensitive information disclosure or code execution. All users running vulnerable versions of this plugin are affected.

💻 Affected Systems

Products:
  • Premmerce Product Search for WooCommerce
Versions: All versions up to and including 2.2.4
Operating Systems: All operating systems running PHP
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress with WooCommerce installed. Vulnerability exists in the plugin's file inclusion mechanism.

⚠️ 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 (including configuration files with database credentials), and complete site takeover.

🟠

Likely Case

Sensitive information disclosure including WordPress configuration files, database credentials, and other local files accessible to the web server user.

🟢

If Mitigated

Limited impact if proper file permissions restrict web server user access to sensitive files and security controls monitor for suspicious file inclusion attempts.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploitation is straightforward as it involves manipulating file inclusion parameters. Public proof-of-concept exists in vulnerability databases.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 2.2.5 or later

Vendor Advisory: https://patchstack.com/database/Wordpress/Plugin/premmerce-search/vulnerability/wordpress-premmerce-product-search-for-woocommerce-plugin-2-2-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 'Premmerce Product Search for WooCommerce'. 4. Click 'Update Now' if update is available. 5. Alternatively, download version 2.2.5+ from WordPress repository and manually update.

🔧 Temporary Workarounds

Disable vulnerable plugin

all

Temporarily disable the Premmerce Product Search plugin until patched

wp plugin deactivate premmerce-search

Restrict PHP file functions

all

Use PHP configuration to disable dangerous functions

Add to php.ini: disable_functions = include, require, include_once, require_once

🧯 If You Can't Patch

  • Implement web application firewall (WAF) rules to block file inclusion patterns
  • Restrict web server user permissions to limit file system access

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel → Plugins → Premmerce Product Search for WooCommerce version. If version is 2.2.4 or lower, you are vulnerable.

Check Version:

wp plugin get premmerce-search --field=version

Verify Fix Applied:

Verify plugin version is 2.2.5 or higher in WordPress admin panel. Test file inclusion attempts should fail.

📡 Detection & Monitoring

Log Indicators:

  • Unusual file paths in PHP error logs
  • Multiple failed include/require attempts
  • Requests with ../ patterns or absolute paths

Network Indicators:

  • HTTP requests containing file inclusion parameters with path traversal sequences
  • Unusual file extensions in URL parameters

SIEM Query:

source="*access.log*" AND ("premmerce-search" OR "premmerce_product_search") AND (".." OR "include" OR "require" OR "/etc/" OR "/proc/")

🔗 References

📤 Share & Export