CVE-2025-60192
📋 TL;DR
This vulnerability allows attackers to include local files on the server through improper input validation in the Premmerce Wholesale Pricing for WooCommerce plugin. Attackers can potentially read sensitive files, execute code, or escalate privileges. All WordPress sites using vulnerable versions of this plugin are affected.
💻 Affected Systems
- Premmerce Wholesale Pricing for WooCommerce
⚠️ 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
Full server compromise through local file inclusion leading to remote code execution, data theft, and complete site takeover.
Likely Case
Sensitive file disclosure (configuration files, database credentials), limited code execution, or privilege escalation.
If Mitigated
Limited impact if file permissions are restrictive and web server runs with minimal privileges.
🎯 Exploit Status
Simple file inclusion vulnerability with public proof-of-concept available. Can be exploited with basic HTTP requests.
🛠️ 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 Wholesale Pricing for WooCommerce'. 4. Click 'Update Now' if available. 5. Alternatively, download version 1.1.11+ from WordPress repository and manually update.
🔧 Temporary Workarounds
Disable vulnerable plugin
allTemporarily disable the plugin until patched
wp plugin deactivate premmerce-woocommerce-wholesale-pricing
Restrict file inclusion
linuxAdd PHP configuration 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 file inclusion patterns
- Restrict file system permissions and run web server with minimal privileges
🔍 How to Verify
Check if Vulnerable:
Check WordPress admin → Plugins → Premmerce Wholesale Pricing for WooCommerce version. If version is 1.1.10 or lower, you are vulnerable.
Check Version:
wp plugin get premmerce-woocommerce-wholesale-pricing --field=version
Verify Fix Applied:
Verify plugin version is 1.1.11 or higher in WordPress admin panel.
📡 Detection & Monitoring
Log Indicators:
- Unusual file paths in PHP include/require statements
- Requests with ../ patterns or absolute paths
- Access to sensitive files like wp-config.php
Network Indicators:
- HTTP requests with file inclusion parameters
- Unusual POST/GET parameters containing file paths
SIEM Query:
web.url:*include* OR web.url:*require* OR web.url:*../* AND web.url:*php*