CVE-2025-66122
📋 TL;DR
This CVE describes a missing authorization vulnerability in the Stylish Price List WordPress plugin that allows attackers to exploit incorrectly configured access control security levels. Attackers can perform unauthorized actions that should require proper authentication. This affects all WordPress sites running Stylish Price List plugin versions up to and including 7.2.2.
💻 Affected Systems
- WordPress Stylish Price List 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
Attackers could modify price lists, change product information, or potentially inject malicious content that affects all site visitors.
Likely Case
Unauthorized users can modify price list content, potentially disrupting business operations or displaying incorrect pricing.
If Mitigated
With proper access controls, only authorized administrators can modify price list content, limiting impact to legitimate business operations.
🎯 Exploit Status
Based on CWE-862 description, this is likely a straightforward access control bypass that doesn't require authentication.
🛠️ Fix & Mitigation
✅ Official Fix
Patch Version: Versions after 7.2.2
Restart Required: No
Instructions:
1. Log into WordPress admin panel
2. Navigate to Plugins → Installed Plugins
3. Find 'Stylish Price List' plugin
4. Click 'Update Now' if update available
5. If no update available, deactivate and remove plugin
6. Install latest version from WordPress repository
🔧 Temporary Workarounds
Disable Plugin
allTemporarily disable the Stylish Price List plugin until patched version is available
wp plugin deactivate stylish-price-list
Restrict Access
linuxImplement IP-based restrictions to limit access to WordPress admin functions
# Add to .htaccess for Apache:
Order Deny,Allow
Deny from all
Allow from 192.168.1.0/24
# Add to nginx config:
location /wp-admin {
allow 192.168.1.0/24;
deny all;
}
🧯 If You Can't Patch
- Implement web application firewall (WAF) rules to block unauthorized access to price list management endpoints
- Enable detailed logging for all price list modification attempts and monitor for unauthorized access patterns
🔍 How to Verify
Check if Vulnerable:
Check WordPress admin panel → Plugins → Installed Plugins → Stylish Price List version
Check Version:
wp plugin get stylish-price-list --field=version
Verify Fix Applied:
Verify plugin version is greater than 7.2.2 and test price list modification with unauthorized user account
📡 Detection & Monitoring
Log Indicators:
- Unauthorized POST requests to /wp-admin/admin-ajax.php with price list related actions
- Failed authentication attempts followed by successful price list modifications
Network Indicators:
- Unusual traffic patterns to WordPress admin endpoints from unauthorized IP addresses
SIEM Query:
source="wordpress.log" AND (uri_path="/wp-admin/admin-ajax.php" OR uri_path="/wp-admin/post.php") AND (action="save_price_list" OR action="update_price") AND user="unauthenticated"