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-2025-47454 WordPress WP Gravity Forms Dynamics CRM plugin <= 1.1.4 - Open Redirection Vulnerability — WP Gravity Forms Dynamics CRM 4.7 Medium2025-05-07
CVE-2025-4328 fp2952 spring-cloud-base HTTP Header MvcController.java sendBack redirect — spring-cloud-base 3.5 Low2025-05-06
CVE-2025-4143 Missing validation of redirect_uri on authorize endpoint 6.1AIMediumAI2025-05-01
CVE-2025-32970 org.xwiki.platform:xwiki-platform-wysiwyg-api Open Redirect vulnerability — xwiki-platform 6.1 Medium2025-04-30
CVE-2025-2068 Lenovo Filez 输入验证错误漏洞 — Client 5.0 Medium2025-04-25
CVE-2025-39404 WordPress Sassy Social Share plugin <= 3.3.73 - Open Redirection vulnerability — Sassy Social Share 4.7 Medium2025-04-24
CVE-2020-36845 KnowBe4 Security Awareness Training 安全漏洞 — Security Awareness Training 5.3 Medium2025-04-20
CVE-2025-39597 WordPress Fast eBay Listings plugin <= 2.12.15 - Open Redirection Vulnerability — Fast eBay Listings 4.7 Medium2025-04-16
CVE-2025-39599 WordPress Listdom plugin <= 4.0.0 - Open Redirection Vulnerability — Listdom 4.7 Medium2025-04-16
CVE-2024-49706 XSS in iKSORIS — iKSORIS 6.1AIMediumAI2025-04-14
CVE-2025-32693 WordPress WebinarPress plugin <= 1.33.28 - Open Redirection Vulnerability — WebinarPress 4.7 Medium2025-04-09
CVE-2025-32694 WordPress Ultimate WP Mail plugin <= 1.3.10 - Open Redirection vulnerability — Ultimate WP Mail 4.7 Medium2025-04-09
CVE-2025-3433 Advanced Advertising System <= 1.3.1 - Open Redirect — Advanced Advertising System 6.1 Medium2025-04-08
CVE-2025-3155 Yelp: arbitrary file read 7.4 High2025-04-03
CVE-2025-31871 WordPress WP Clone any post type Plugin <= 3.6 - Open Redirect vulnerability — WP Clone any post type 4.7 Medium2025-04-01
CVE-2025-31821 WordPress Integration of Zoho CRM and Contact Form 7 plugin <= 1.0.6 - Open Redirection Vulnerability — Integration of Zoho CRM and Contact Form 7 4.7 Medium2025-04-01
CVE-2025-3027 Open Redirect vulnerability in EJBCA — EJBCA 6.1 -2025-03-31
CVE-2025-2980 Legrand SMS PowerView redirect — SMS PowerView 3.5 Low2025-03-31
CVE-2025-24381 Dell Unity 输入验证错误漏洞 — Unity 8.8 High2025-03-28
CVE-2025-30884 WordPress Bit Integrations plugin <= 2.4.10 - Open Redirection vulnerability — Bit Integrations 4.7 Medium2025-03-27
CVE-2025-30885 WordPress Bit Form plugin <= 2.18.0 - Open Redirection vulnerability — Bit Form 4.7 Medium2025-03-27
CVE-2025-30859 WordPress AliNext plugin <= 3.5.1 - Open Redirection vulnerability — AliNext 4.7 Medium2025-03-27
CVE-2025-30795 WordPress Automation By Autonami plugin <= 3.5.1 - Open Redirection vulnerability — FunnelKit Automations 4.7 Medium2025-03-27
CVE-2025-30781 WordPress Scheduled & Automatic Order Status Controller for WooCommerce plugin <= 3.7.1 - Open Redirection Vulnerability — Scheduled & Automatic Order Status Controller for WooCommerce 4.7 Medium2025-03-27
CVE-2025-30164 Icinga Web 2 has open redirect on login page — icingaweb2 4.1 Medium2025-03-26
CVE-2024-8021 Open Redirect in gradio-app/gradio — gradio-app/gradio 6.1 -2025-03-20
CVE-2024-9308 Open Redirect in haotian-liu/llava — haotian-liu/llava 6.1 -2025-03-20
CVE-2024-10908 Open Redirect in lm-sys/fastchat — lm-sys/fastchat 6.1 -2025-03-20
CVE-2024-11044 Open Redirect in automatic1111/stable-diffusion-webui — automatic1111/stable-diffusion-webui 6.1 -2025-03-20
CVE-2024-10812 Open Redirect in binary-husky/gpt_academic — binary-husky/gpt_academic 6.1 -2025-03-20

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