820 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.
$redirect_url = $_GET['url']; header("Location: " . $redirect_url);http://example.com/example.php?url=http://malicious.example.compublic 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); } } }<a href="http://bank.example.com/redirect?url=http://attacker.example.net">Click here to log in</a>| CVE ID | Title | CVSS | Severity | Published |
|---|---|---|---|---|
| CVE-2017-16224 | st 输入验证错误漏洞 — st node module | 6.1 | - | 2018-06-07 |
| CVE-2018-3743 | hekto 安全漏洞 — hekto | 6.1 | - | 2018-06-01 |
| CVE-2018-3819 | Elasticsearch Kibana 安全漏洞 — Kibana | 4.7 | - | 2018-03-30 |
| CVE-2018-0097 | Cisco Prime Infrastructure 安全漏洞 — Cisco Prime Infrastructure | 6.1 | - | 2018-01-18 |
| CVE-2017-11482 | Elasticsearch Kibana 安全漏洞 — Kibana | 6.1 | - | 2017-12-08 |
| CVE-2017-1002150 | python-fedora 安全漏洞 — Python-Fedora | 6.1 | - | 2017-09-14 |
| CVE-2017-6018 | B.Braun Medical SpaceCom模块输入验证错误漏洞 — B. Braun Medical SpaceCom | 6.1 | - | 2017-06-30 |
| CVE-2016-10365 | Elasticsearch Kibana 安全漏洞 — Kibana | 6.1 | - | 2017-06-16 |
| CVE-2017-8451 | Elasticsearch Kibana 输入验证错误漏洞 — Elastic X-Pack Security | 6.1 | - | 2017-06-16 |
| CVE-2011-1594 | Spacewalk: spacewalk: open redirect vulnerability enables phishing attacks via url parameter — Red Hat Enterprise Linux 6 | 6.5 | Medium | 2014-02-05 |
Vulnerabilities classified as CWE-601 (指向未可信站点的URL重定向(开放重定向)) represent 820 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.