CVE-2025-60191
📋 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 running the Premmerce Wishlist for WooCommerce plugin version 1.1.10 and earlier. Attackers can potentially read sensitive files or execute code depending on server configuration.
💻 Affected Systems
- Premmerce Wishlist for WooCommerce WordPress plugin
⚠️ 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.
- Review the CVE details at NVD
- Check vendor security advisories for your specific version
- Test if the vulnerability is exploitable in your environment
- 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 (configuration files, database credentials) and limited file system access.
If Mitigated
Limited impact with proper file permissions and security controls in place.
🎯 Exploit Status
Exploitation is straightforward with publicly available details. No authentication required.
🛠️ Fix & Mitigation
✅ Official Fix
Patch Version: 1.1.11 or later
Restart Required: No
Instructions:
1. Log into WordPress admin panel
2. Go to Plugins → Installed Plugins
3. Find 'Premmerce Wishlist for WooCommerce'
4. Click 'Update Now' if available
5. If no update appears, manually download version 1.1.11+ from WordPress.org
6. Deactivate, delete old version, upload new version, activate
🔧 Temporary Workarounds
Disable vulnerable plugin
allTemporarily deactivate the plugin until patched
wp plugin deactivate premmerce-woocommerce-wishlist
Restrict PHP file inclusion
linuxModify php.ini to disable dangerous functions
php_admin_value allow_url_include Off
php_admin_value allow_url_fopen Off
🧯 If You Can't Patch
- Implement web application firewall (WAF) rules to block LFI patterns
- Restrict file system permissions and implement strict file inclusion validation
🔍 How to Verify
Check if Vulnerable:
Check plugin version in WordPress admin under Plugins → Installed Plugins
Check Version:
wp plugin get premmerce-woocommerce-wishlist --field=version
Verify Fix Applied:
Confirm plugin version is 1.1.11 or higher after update
📡 Detection & Monitoring
Log Indicators:
- Unusual file include patterns in PHP error logs
- Requests with '../' sequences in parameters
- Access to sensitive files like /etc/passwd
Network Indicators:
- HTTP requests with file path traversal in query parameters
- Unexpected file downloads from web server
SIEM Query:
source="web_server_logs" AND (uri="*../*" OR uri="*/etc/passwd*" OR uri="*/wp-config.php*")