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

Goal: 1000 CNY · Raised: 1336 CNY

100%

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

837 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-2026-64941 Open redirect in Phoenix.LiveView.validate_local_url!/2 via ASCII tab, LF and CR — phoenix_live_view 2.1 Low2026-08-10
CVE-2026-59717 Home Assistant Companion: `homeassistant://invite` Deep Link Credential Phishing — core 4.3 Medium2026-08-07
CVE-2026-54215 TeamDavid: Open Redirect via the 'replyUrl' parameter — TeamDavid 5.3 Medium2026-08-07
CVE-2026-54214 TeamDavid: Header Injection through the 'cType' URL parameter — TeamDavid 5.3 Medium2026-08-07
CVE-2026-12071 TeamDavid: Header Injection leading to Open Redirect via URL-encoded characters — TeamDavid 5.3 Medium2026-08-07
CVE-2026-66829 html_sanitize_ex HTML5 scrubber keeps attacker-supplied meta refresh, allowing forced cross-origin redirection — html_sanitize_ex 2.3 Low2026-08-06
CVE-2026-66370 html_sanitize_ex HTML5 scrubber keeps attacker-supplied form-association attributes, allowing form hijacking — html_sanitize_ex 4.8 Medium2026-08-06
CVE-2026-71240 DjangoCRM - Unauthenticated Open Redirect via toggle_default_sorting next_url Parameter — django-crm 4.3 Medium2026-08-05
CVE-2026-14219 URL Redirection in Bilin Software's HUMANIST Digital Human Resources — HUMANIST Digital Human Resources 5.4 Medium2026-08-04
CVE-2026-18721 kalcaddle kodbox SSO API Login apiLogin redirect — kodbox 4.3 Medium2026-08-04
CVE-2026-69087 Grav Form Plugin before 9.1.13 Open Redirect via form.value() Twig — grav-plugin-form 6.5 Medium2026-08-03
CVE-2025-71403 better-auth before 1.1.20 Open Redirect via trustedOrigins Bypass — better-auth 7.1 High2026-08-01
CVE-2026-53573 core-geonetwork has an Open Redirect Bypass — core-geonetwork 4.8 Medium2026-07-31
CVE-2026-67350 Serendipity < 2.6.1 Open Redirect via exit.php — Serendipity 4.3 Medium2026-07-31
CVE-2026-10545 IBM Planning Analytics Local is affected by Open Redirect — Planning Analytics Local 7.5 High2026-07-30
CVE-2026-66414 Leantime Open Redirect in Login Controller via redirectUrl Parameter — Leantime 6.1 Medium2026-07-30
CVE-2026-18266 Dify AI Workflow oauth_redirect_url Open Redirect Vulnerability — Dify--2026-07-29
CVE-2026-67178 Open Redirect in MISP Installer-Generated Apache Configuration — misp 7.8 High2026-07-28
CVE-2026-14171 ads-tec Industrial IT: Post-login open redirect in the web interface — DVG-IRF1401 6.1 Medium2026-07-28
CVE-2026-53669 React Router: Open redirect via backslash in <Link> and useNavigate (CVE-2025-68470 bypass) — react-router 5.1 Medium2026-07-27
CVE-2026-53668 React Router: Open redirect can lead to XSS — react-router 6.9 Medium2026-07-27
CVE-2026-59730 @astrojs/node: Backslash-prefixed paths not recognized as internal by trailing-slash redirect — astro 2.1 Low2026-07-27
CVE-2026-48012 Shopware SSO referer trust leading to an arbitrary redirect target — shopware 4.3 Medium2026-07-23
CVE-2026-8152 Unblu Spark Open Redirect leading to DOM-Based XSS — Unblu Spark--2026-07-22
CVE-2026-8284 Open Redirect in Universal Sotware's FlexCity — FlexCity 6.1 Medium2026-07-21
CVE-2026-16336 trinodb trino OAuth2/OIDC ExternalUriInfo.java redirect — trino 4.3 Medium2026-07-21
CVE-2026-63768 cal.diy 6.2.0 Conferencing OAuth Callback Open Redirect via Unsigned State — cal.diy 4.3 Medium2026-07-20
CVE-2026-61901 Joomla Extension - hikashop.com - Open redirect in Hikashop < 6.5.2 — Hikashop extension for Joomla--2026-07-20
CVE-2026-32824 dataCycle User API Password Reset And Confirmation Flows Trust Attacker- Controlled Redirect Targets — dataCycle-CORE 7.3 High2026-07-20
CVE-2026-15093 Multiple Vulnerabilities in IBM Engineering AI hub. — Engineering AI Hub 4.3 Medium2026-07-17

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