CVE-2025-66063

5.4 MEDIUM

📋 TL;DR

This CVE describes a Missing Authorization vulnerability in the WP Google Review Slider WordPress plugin that allows attackers to exploit incorrectly configured access control security levels. It affects all WordPress sites running the plugin version 17.4 or earlier. Attackers could potentially access or modify data they shouldn't have permission to view or change.

💻 Affected Systems

Products:
  • WP Google Review Slider (wp-google-places-review-slider)
Versions: All versions up to and including 17.4
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Affects all WordPress installations with the vulnerable plugin version installed and 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

Attackers could modify plugin settings, inject malicious content, or potentially escalate privileges to compromise the entire WordPress site.

🟠

Likely Case

Unauthorized users could access or modify review data, plugin settings, or other administrative functions intended only for authenticated administrators.

🟢

If Mitigated

With proper access controls and authentication requirements, the vulnerability would be prevented from being exploited.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Missing authorization vulnerabilities typically require minimal technical skill to exploit once the attack vector is identified.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 17.5 or later

Vendor Advisory: https://patchstack.com/database/Wordpress/Plugin/wp-google-places-review-slider/vulnerability/wordpress-wp-google-review-slider-plugin-17-4-broken-access-control-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find 'WP Google Review Slider'. 4. Click 'Update Now' if available. 5. Alternatively, download version 17.5+ from WordPress repository and manually update.

🔧 Temporary Workarounds

Disable Plugin

all

Temporarily disable the vulnerable plugin until patched

wp plugin deactivate wp-google-places-review-slider

Restrict Access

linux

Implement IP-based restrictions to admin areas

Add to .htaccess: Order Deny,Allow
Deny from all
Allow from 192.168.1.0/24

🧯 If You Can't Patch

  • Implement strict access controls and authentication requirements for all plugin endpoints
  • Monitor logs for unauthorized access attempts to plugin functionality

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin → Plugins → Installed Plugins for WP Google Review Slider version

Check Version:

wp plugin get wp-google-places-review-slider --field=version

Verify Fix Applied:

Verify plugin version is 17.5 or higher in WordPress admin panel

📡 Detection & Monitoring

Log Indicators:

  • Unauthorized POST/GET requests to wp-google-places-review-slider endpoints
  • Failed authentication attempts followed by successful plugin actions

Network Indicators:

  • Unusual traffic patterns to plugin-specific URLs from unauthenticated sources

SIEM Query:

source="wordpress.log" AND (uri_path="*wp-google-places-review-slider*" OR plugin="wp-google-places-review-slider") AND (response_code=200 OR action="update") AND user="unauthenticated"

🔗 References

📤 Share & Export