目标达成 感谢每一位支持者 — 我们达成了 100% 目标!

目标: 1000 元 · 已筹: 1336

100%

CWE-601 指向未可信站点的URL重定向(开放重定向) 类漏洞列表 815

CWE-601 指向未可信站点的URL重定向(开放重定向) 类弱点 815 条 CVE 漏洞汇总,含 AI 中文分析。

CWE-601 属于开放重定向漏洞,指应用程序接受用户控制的输入并用于外部链接重定向。攻击者通常利用此缺陷构造恶意 URL,诱导用户点击以跳转至钓鱼或恶意网站,从而窃取凭证或传播恶意软件。开发者应避免直接使用用户输入作为重定向目标,需对目标域名进行白名单校验,或使用经过编码的内部标识符替代直接链接,确保重定向逻辑的安全可控。

MITRE CWE 官方描述
CWE:CWE-601 URL Redirection to Untrusted Site ('Open Redirect') 英文:Web 应用程序接受由用户控制的输入,该输入指定指向外部站点的链接,并在重定向中使用该链接。
常见影响 (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…
缓解措施 (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…
代码示例 (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 ID标题CVSS风险等级Published
CVE-2026-48012 Shopware 输入验证错误漏洞 — shopware 4.3 Medium2026-07-23
CVE-2026-8152 Unblu Spark 输入验证错误漏洞 — Unblu Spark--2026-07-22
CVE-2026-8284 Universal Software FlexCity 输入验证错误漏洞 — FlexCity 6.1 Medium2026-07-21
CVE-2026-16336 Trino 输入验证错误漏洞 — trino 4.3 Medium2026-07-21
CVE-2026-63768 Cal.com Cal.diy 输入验证错误漏洞 — cal.diy 4.3 Medium2026-07-20
CVE-2026-61901 HikaShop 输入验证错误漏洞 — Hikashop extension for Joomla--2026-07-20
CVE-2026-32824 dataCycle CORE 输入验证错误漏洞 — dataCycle-CORE 7.3 High2026-07-20
CVE-2026-15093 IBM Engineering AI Hub 输入验证错误漏洞 — Engineering AI Hub 4.3 Medium2026-07-17
CVE-2026-7364 IBM Verify Identity Access Container 输入验证错误漏洞 — Verify Identity Access 3.1 Low2026-07-17
CVE-2026-63094 SigNoz 输入验证错误漏洞 — signoz 8.1 High2026-07-17
CVE-2026-12379 Qt Axivion 输入验证错误漏洞 — Axivion--2026-07-16
CVE-2026-33213 Redash 输入验证错误漏洞 — redash 6.1 Medium2026-07-15
CVE-2026-61451 getgrav Grav 输入验证错误漏洞 — grav 9.6 Critical2026-07-15
CVE-2026-48000 Adobe Commerce 输入验证错误漏洞 — Adobe Commerce 4.3 Medium2026-07-14
CVE-2026-14902 Ivanti Xtraction 输入验证错误漏洞 — Xtraction 4.0 Medium2026-07-14
CVE-2026-44745 SAP Approuter 输入验证错误漏洞 — SAP Approuter 8.1 High2026-07-14
CVE-2026-55806 Drupal core 输入验证错误漏洞 — Drupal core--2026-07-10
CVE-2026-55461 Grokability Snipe-IT 输入验证错误漏洞 — snipe-it 6.1 Medium2026-07-10
CVE-2026-55590 CakePHP Authentication 输入验证错误漏洞 — authentication--2026-07-09
CVE-2026-31982 Nozomi Networks Guardian 输入验证错误漏洞 — Guardian 7.1 High2026-07-09
CVE-2026-59806 Gradio 输入验证错误漏洞 — gradio 7.4 High2026-07-08
CVE-2026-14632 kirilkirkov Ecommerce-CodeIgniter-Bootstrap 输入验证错误漏洞 — Ecommerce-CodeIgniter-Bootstrap 4.3 Medium2026-07-04
CVE-2026-25779 Gitea 输入验证错误漏洞 — Gitea Open Source Git Server--2026-07-03
CVE-2026-41106 Microsoft 365 Copilot 输入验证错误漏洞 — Microsoft 365 Copilot 9.3 Critical2026-07-02
CVE-2026-58520 Wikimedia Mediawiki - UrlShortener Extension 输入验证错误漏洞 — Mediawiki - UrlShortener Extension--2026-07-01
CVE-2026-58450 Invoice Ninja 输入验证错误漏洞 — invoiceninja 4.3 Medium2026-06-30
CVE-2026-10562 TP-Link Archer AX20 输入验证错误漏洞 — Archer AX20 V2.0--2026-06-30
CVE-2026-40080 Cacti 输入验证错误漏洞 — cacti 6.1 Medium2026-06-25
CVE-2026-52802 Gogs 输入验证错误漏洞 — gogs 5.4 Medium2026-06-24
CVE-2026-13163 Mario MailerUp 输入验证错误漏洞 — Mailerup--2026-06-24

CWE-601(指向未可信站点的URL重定向(开放重定向)) 是常见的弱点类别,本平台收录该类弱点关联的 815 条 CVE 漏洞。