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

Goal: 1000 CNY · Raised: 1310 CNY

100%

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

767 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-53523 Nezha Monitoring: OAuth2 Redirect URL — Host Header Injection — nezha 6.8 Medium2026-06-12
CVE-2026-50089 Aqara IAM/SSO Gateway open redirect — Aqara IAM/SSO Gateway 6.1 Medium2026-06-12
CVE-2026-46616 Umbraco.Cms: Open Redirect Vulnerability in Surface Controllers — Umbraco-CMS 5.4 Medium2026-06-10
CVE-2026-45566 Roxy-WI: Open redirect on /login?next= via basic-auth userinfo syntax bypass — roxy-wi 6.1 Medium2026-06-10
CVE-2026-48856 httpc leaks Authorization header to cross-origin redirect targets — OTP--2026-06-10
CVE-2026-41706 Open Redirect When Using CookieRequestCache — Spring Security 6.1 Medium2026-06-09
CVE-2026-41008 Spring Security Authorization Server Open Redirect via request_uri — Spring Security 6.1 Medium2026-06-09
CVE-2026-47991 Adobe Experience Manager | URL Redirection to Untrusted Site ('Open Redirect') (CWE-601) — Adobe Experience Manager 4.3 Medium2026-06-09
CVE-2026-28301 SolarWinds Observability Self-Hosted Open Redirect Vulnerability — Observability Self-Hosted 4.8 Medium2026-06-09
CVE-2026-47347 TYPO3 CMS - Open Redirect in Core Utilities — TYPO3 CMS--2026-06-09
CVE-2026-41844 Spring Framework Open Redirect in Spring MVC and WebFlux — Spring Framework 4.2 Medium2026-06-09
CVE-2026-11502 JeecgBoot Third-Party Login ThirdLoginController.java HttpServletResponse.sendRedirect redirect — JeecgBoot 3.1 Low2026-06-08
CVE-2026-11477 hs-web hsweb-framework OAuth2 Client OAuth2Client.java OAuth2Client redirect — hsweb-framework 4.3 Medium2026-06-08
CVE-2026-21826 HCL Digital Experience and HCL Digital Experience Compose could be susceptible to Host header injection — Digital Experience & DX Compose 6.1 Medium2026-06-05
CVE-2026-10861 MISP post-login open redirect via pre_login_requested_url — misp--2026-06-04
CVE-2026-10856 Open redirect in MISP dashboard button widget URL handling — misp--2026-06-04
CVE-2026-43924 FOSSBilling has an open redirect via administrator-configured redirect targets — FOSSBilling--2026-06-03
CVE-2026-41569 authentik: WS-Federation wreply origin bypass can exfiltrate signed login responses to attacker-controlled endpoints — authentik--2026-06-02
CVE-2026-40181 React Router's same-origin redirect with path starting // causes open redirect via protocol-relative URL reinterpretation — react-router--2026-06-02
CVE-2026-45278 Nextcloud: Open Redirect in user_oidc login flow via protocol-relative URL bypass — security-advisories 3.3 Low2026-06-01
CVE-2026-40961 Apache Airflow: Open Redirect Bypass Vulnerability — Apache Airflow--2026-06-01
CVE-2026-49380 JetBrains TeamCity 输入验证错误漏洞 — TeamCity 3.1 Low2026-05-29
CVE-2026-45307 Speakr: Open redirect in is_safe_url via parser mismatch on next parameter — speakr 6.1 Medium2026-05-28
CVE-2026-44681 Authlib: Open Redirect in Authlib OIDC Implicit/Hybrid Authorization — authlib 6.1 Medium2026-05-27
CVE-2026-45335 WeGIA: Middleware whitelist bypass → open redirect via InternoControle.nextPage — WeGIA 5.4 Medium2026-05-27
CVE-2026-49059 WordPress Facebook for WooCommerce plugin <= 3.7.0 - Open Redirection vulnerability — Facebook for WooCommerce 4.7 Medium2026-05-27
CVE-2026-44833 Snipe-IT: Open redirect vulnerability — snipe-it 5.9 Medium2026-05-26
CVE-2026-48589 Apache Shiro: Jakarta EE open redirect via untrusted Referer in post-login redirect flow — Apache Shiro--2026-05-25
CVE-2026-44598 Apache Shiro Jakarta EE module: Open redirect and SSRF (requires valid credentials) — Apache Shiro Jakarta EE module--2026-05-25
CVE-2026-47070 HTTP/3 redirect handler leaks Authorization and Cookie headers to cross-origin redirect target in hackney — hackney--2026-05-25

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