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

目标: 1000 元 · 已筹: 1336

100%

CWE-307 过多认证尝试的限制不恰当 类漏洞列表 410

CWE-307 过多认证尝试的限制不恰当 类弱点 410 条 CVE 漏洞汇总,含 AI 中文分析。

CWE-307 属于身份验证缺陷,指系统未有效限制短时间内过多的认证失败尝试。攻击者常利用此漏洞进行暴力破解或字典攻击,通过高频尝试猜测凭证以获取未授权访问。开发者应实施账户锁定机制、引入验证码挑战或设置动态速率限制,从而在保障用户体验的同时,显著增加自动化攻击的难度与成本,确保系统安全性。

MITRE CWE 官方描述
CWE:CWE-307 过度身份验证尝试的限制不当 英文:产品未实施足够的措施来防止在短时间内发生多次失败的身份验证尝试。
常见影响 (1)
Access Control Bypass Protection Mechanism
An attacker could perform an arbitrary number of authentication attempts using different passwords, and eventually gain access to the targeted account using a brute force attack.
缓解措施 (2)
Architecture and Design Common protection mechanisms include: Disconnecting the user after a small number of failed attempts Implementing a timeout Locking out a targeted account Requiring a computational task on the user's part.
Architecture and Design Use a vetted library or framework that does not allow this weakness to occur or provides constructs that make this weakness easier to avoid [REF-1482]. Consider using libraries with authentication capabilities such as OpenSSL or the ESAPI Authenticator. [REF-45]
代码示例 (2)
In January 2009, an attacker was able to gain administrator access to a Twitter server because the server did not restrict the number of login attempts [REF-236]. The attacker targeted a member of Twitter's support team and was able to successfully guess the member's password using a brute force attack by guessing a large number of common words. After gaining access as the member of the support st…
The following code, extracted from a servlet's doPost() method, performs an authentication lookup every time the servlet is invoked.
String username = request.getParameter("username"); String password = request.getParameter("password"); int authResult = authenticateUser(username, password);
Bad · Java
CVE ID 标题 CVSS 风险等级 Published
CVE-2024-32774 WordPress plugin ProfileGrid  安全漏洞 — ProfileGrid 4.3 Medium 2024-05-17
CVE-2024-32720 WordPress plugin Appointment Hour Booking 安全漏洞 — Appointment Hour Booking 5.3 Medium 2024-05-17
CVE-2024-3461 KioWare 安全漏洞 — Kioware 6.2 Medium 2024-05-09
CVE-2024-32868 ZITADEL 安全漏洞 — zitadel 6.5 Medium 2024-04-25
CVE-2024-32676 WordPress plugin LoginPress Pro 安全漏洞 — LoginPress Pro 5.3 Medium 2024-04-25
CVE-2024-28825 Checkmk 安全漏洞 — Checkmk 5.9 Medium 2024-04-24
CVE-2024-30390 Juniper Networks Junos OS Evolved 安全漏洞 — Junos OS Evolved 5.3 Medium 2024-04-12
CVE-2024-3202 Stupid Simple CMS 安全漏洞 — Stupid Simple CMS 3.7 Low 2024-04-02
CVE-2024-21662 Argo CD 安全漏洞 — argo-cd 7.5 High 2024-03-18
CVE-2024-21652 Argo CD 安全漏洞 — argo-cd 9.8 Critical 2024-03-18
CVE-2024-2051 Schneider Electric Easergy T200 安全漏洞 — Easergy T200 (Modbus) Models: T200I, T200E, T200P, T200S, T200H 9.8 Critical 2024-03-18
CVE-2024-24767 CasaOS 安全漏洞 — CasaOS-UserService 9.1 Critical 2024-03-06
CVE-2024-1104 Topkapi 安全漏洞 — Webserv2 7.5 High 2024-02-22
CVE-2024-21500 Caddy 安全漏洞 — github.com/greenpau/caddy-security 4.8 Medium 2024-02-17
CVE-2024-22425 Dell RecoverPoint for Virtual Machines 安全漏洞 — RecoverPoint for VMs 6.5 Medium 2024-02-16
CVE-2023-45191 IBM Engineering Lifecycle Optimization 安全漏洞 — Engineering Lifecycle Optimization - Publishing 7.5 High 2024-02-09
CVE-2023-38273 IBM Cloud Pak System 安全漏洞 — Cloud Pak System 7.5 High 2024-02-02
CVE-2023-50326 IBM PowerSC 安全漏洞 — PowerSC 7.5 High 2024-02-02
CVE-2022-45790 Omron SYSMAC CS/CJ/CP Series 安全漏洞 — CJ-series and CS-series CPU modules 8.6 High 2024-01-22
CVE-2024-22317 IBM App Connect Enterprise 安全漏洞 — App Connect Enterprise 9.1 Critical 2024-01-18
CVE-2023-49810 WWBN AVideo 安全漏洞 — AVideo 7.3 High 2024-01-10
CVE-2023-49792 Nextcloud 安全漏洞 — security-advisories 5.3 Medium 2023-12-22
CVE-2023-6912 M-Files Server 安全漏洞 — M-Files Server 7.5 High 2023-12-20
CVE-2023-6928 EuroTel ETL3100 安全漏洞 — ETL3100 9.8 Critical 2023-12-19
CVE-2023-6756 IceCMS 安全漏洞 — IceCMS 5.3 Medium 2023-12-13
CVE-2023-35039 WordPress Plugin Password Reset with Code for WordPress REST API 安全漏洞 — Password Reset with Code for WordPress REST API 9.8 Critical 2023-12-07
CVE-2023-46745 LibreNMS 安全漏洞 — librenms 5.3 Medium 2023-11-17
CVE-2023-45582 Fortinet FortiMail 安全漏洞 — FortiMail 5.3 Medium 2023-11-14
CVE-2023-42480 SAP NetWeaver AS Java Logon 安全漏洞 — NetWeaver AS Java 5.3 Medium 2023-11-14
CVE-2023-41270 SAMSUNG Smart Things 安全漏洞 — UE40D7000 3.5 Low 2023-11-08

CWE-307(过多认证尝试的限制不恰当) 是常见的弱点类别,本平台收录该类弱点关联的 410 条 CVE 漏洞。