Goal Reached Thanks to every supporter — we hit 100%!

Goal: 1000 CNY · Raised: 1000 CNY

100.0%

CWE-601 (指向未可信站点的URL重定向(开放重定向)) — Vulnerability Class 722

722 vulnerabilities classified as CWE-601 (指向未可信站点的URL重定向(开放重定向)). AI Chinese analysis included.

CWE-601 represents a critical web application vulnerability where the software accepts user-controlled input to specify a redirect destination without adequate validation. Attackers typically exploit this weakness by crafting malicious URLs that redirect victims to untrusted, phishing sites, often leveraging the trust associated with the legitimate domain to bypass security warnings. This social engineering tactic facilitates credential theft, malware distribution, or session hijacking. To mitigate this risk, developers must implement strict validation mechanisms, such as maintaining an allowlist of permitted domains or verifying that redirect parameters originate from the same origin. Additionally, using relative paths instead of absolute URLs can significantly reduce the attack surface. By ensuring that all redirection targets are explicitly trusted and verified before processing, organizations can prevent unauthorized navigation and protect users from deceptive external links.

MITRE CWE Description
The web application accepts a user-controlled input that specifies a link to an external site, and uses that link in a redirect.
Common Consequences (2)
Access ControlBypass Protection Mechanism, Gain Privileges or Assume Identity
The user may be redirected to an untrusted page that contains malware which may then compromise the user's system. In some cases, an open redirect can also enable the immediate download of a file without the user's permission, because the r…
Access Control, Confidentiality, OtherBypass Protection Mechanism, Gain Privileges or Assume Identity, Other
By modifying the URL value to a malicious site, an attacker may successfully launch a phishing scam. The user may be subjected to phishing attacks by being redirected to an untrusted page. The phishing attack may point to an attacker controlled web page that appears to be a trusted web site. The phi…
Mitigations (5)
ImplementationAssume all input is malicious. Use an "accept known good" input validation strategy, i.e., use a list of acceptable inputs that strictly conform to specifications. Reject any input that does not strictly conform to specifications, or transform it into something that does. When performing input validation, consider all potentially relevant properties, including length, type of input, the full range…
Architecture and DesignUse an intermediate disclaimer page that provides the user with a clear warning that they are leaving the current site. Implement a long timeout before the redirect occurs, or force the user to click on the link. Be careful to avoid XSS problems (CWE-79) when generating the disclaimer page.
Architecture and DesignWhen the set of acceptable objects, such as filenames or URLs, is limited or known, create a mapping from a set of fixed input values (such as numeric IDs) to the actual filenames or URLs, and reject all other inputs. For example, ID 1 could map to "/login.asp" and ID 2 could map to "http://www.example.com/". Features such as the ESAPI AccessReferenceMap [REF-45] provide this capability.
Architecture and DesignEnsure that no externally-supplied requests are honored by requiring that all redirect requests include a unique nonce generated by the application [REF-483]. Be sure that the nonce is not predictable (CWE-330).
Architecture and Design, ImplementationUnderstand all the potential areas where untrusted inputs can enter your software: parameters or arguments, cookies, anything read from the network, environment variables, reverse DNS lookups, query results, request headers, URL components, e-mail, files, filenames, databases, and any external systems that provide data to the application. Remember that such inputs may be obtained indirectly throug…
Examples (2)
The following code obtains a URL from the query string and then redirects the user to that URL.
$redirect_url = $_GET['url']; header("Location: " . $redirect_url);
Bad · PHP
http://example.com/example.php?url=http://malicious.example.com
Attack
The following code is a Java servlet that will receive a GET request with a url parameter in the request to redirect the browser to the address specified in the url parameter. The servlet will retrieve the url parameter value from the request and send a response to redirect the browser to the url address.
public class RedirectServlet extends HttpServlet { protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { String query = request.getQueryString(); if (query.contains("url")) { String url = request.getParameter("url"); response.sendRedirect(url); } } }
Bad · Java
<a href="http://bank.example.com/redirect?url=http://attacker.example.net">Click here to log in</a>
Attack · HTML
CVE IDTitleCVSSSeverityPublished
CVE-2024-52003 X-Forwarded-Prefix Header still allows for Open Redirect in traefik — traefik 5.3 -2024-11-29
CVE-2024-53264 Open Redirect Vulnerability in Loading Page in bunkerweb — bunkerweb 6.1AIMediumAI2024-11-27
CVE-2024-8526 Automated Logic WebCTRL and Carrier i-Vu Open Redirect — WebCTRL 6.1AIMediumAI2024-11-21
CVE-2024-52512 Nextcloud User OIDC has an open redirection when logging in with User OIDC — security-advisories 3.3 Low2024-11-15
CVE-2022-20634 Cisco Enterprise Chat and Email Open Redirect Vulnerability — Cisco Enterprise Chat and Email 4.7 Medium2024-11-15
CVE-2024-1240 Open Redirection in pyload/pyload — pyload/pyload 6.1AIMediumAI2024-11-15
CVE-2024-11207 Apereo CAS login redirect — CAS 4.3 Medium2024-11-14
CVE-2024-30140 HCL BigFix Compliance is affected by unvalidated redirects and forwards — BigFix Compliance 5.4 Medium2024-11-07
CVE-2024-50345 Open redirect via browser-sanitized URLs in symfony/http-foundation — symfony 3.1 Low2024-11-06
CVE-2024-25566 Open Redirect in PingAM — PingAM 6.1AIMediumAI2024-10-29
CVE-2024-50463 WordPress Sunshine Photo Cart plugin <= 3.2.9 - Open Redirection vulnerability — Sunshine Photo Cart 4.7 Medium2024-10-28
CVE-2024-49682 WordPress Simple Membership plugin <= 4.5.3 - Open Redirection vulnerability — Simple Membership 4.7 Medium2024-10-24
CVE-2024-47353 WordPress ElementsReady Addons for Elementor plugin <= 6.4.2 - Open Redirection vulnerability — ElementsReady Addons for Elementor 4.7 Medium2024-10-11
CVE-2024-47354 WordPress Simple Membership After Login Redirection plugin <= 1.6 - Open Redirection vulnerability — Simple Membership After Login Redirection 4.7 Medium2024-10-10
CVE-2024-47648 WordPress EventPrime plugin <= 4.0.4.5 - Open Redirection vulnerability — EventPrime 4.7 Medium2024-10-10
CVE-2024-43536 Windows Mobile Broadband Driver Remote Code Execution Vulnerability — Windows 10 Version 1809 6.8 Medium2024-10-08
CVE-2024-43543 Windows Mobile Broadband Driver Remote Code Execution Vulnerability — Windows 10 Version 1809 6.8 Medium2024-10-08
CVE-2024-46886 Siemens SIMATIC S7-1200和Siemens SIMATIC S7-1500 安全漏洞 — SIMATIC Drive Controller CPU 1504D TF 4.7 Medium2024-10-08
CVE-2024-45247 Sonarr – CWE-601: URL Redirection to Untrusted Site ('Open Redirect') — Sonarr 6.1 Medium2024-10-06
CVE-2024-47646 WordPress Payflex Payment Gateway plugin <= 2.6.1 - Open Redirection vulnerability — Payflex Payment Gateway 4.7 Medium2024-10-05
CVE-2024-43683 Improper verification of the Host header in TimeProvider 4100 — TimeProvider 4100 6.1 -2024-10-04
CVE-2024-8148 BUG-000168624 - Unvalidated redirect in Portal for ArcGIS. (11.2, 11.1, 10.9.1. and 10.8.1) — Portal for ArcGIS 6.1 Medium2024-10-04
CVE-2024-38037 BUG-000167983 - Unvalidated redirect in Portal for ArcGIS — Portal for ArcGIS 6.1 Medium2024-10-04
CVE-2024-9266 Open Redirect — express 4.7 Medium2024-10-03
CVE-2024-47530 Scout contains an Open Redirect on Login via `next` — scout 5.4 Medium2024-09-30
CVE-2024-8883 Keycloak: vulnerable redirect uri validation results in open redirec 6.1 Medium2024-09-19
CVE-2024-8761 Share This Image <= 2.03 - Open Redirect via link Parameter — Share This Image 7.2 High2024-09-17
CVE-2024-4283 URL Redirection to Untrusted Site ('Open Redirect') in GitLab — GitLab 6.4 Medium2024-09-16
CVE-2024-4612 URL Redirection to Untrusted Site ('Open Redirect') in GitLab — GitLab 6.4 Medium2024-09-12
CVE-2024-7312 REST Interface Link Redirection via Host parameter — Payara Server 6.1AIMediumAI2024-09-11

Vulnerabilities classified as CWE-601 (指向未可信站点的URL重定向(开放重定向)) represent 722 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.