目标达成 感谢每一位支持者 — 我们达成了 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-2020-8202 Nextcloud Preferred Providers app 安全漏洞 — Nextcloud Preferred Providers 5.3 - 2020-07-30
CVE-2020-14484 OpenClinic GA 安全漏洞 — OpenClinic GA 9.8 - 2020-07-20
CVE-2020-10285 uFactory xArm5 Lite 安全特征问题漏洞 — xArm5 Lite, xArm 6 and xArm 7 9.8 - 2020-07-15
CVE-2020-7508 Schneider Electric Easergy T300 安全漏洞 — Easergy T300 (Firmware version 1.5.2 and older) 9.8 - 2020-06-16
CVE-2020-11052 Sorcery 安全漏洞 — Sorcery 8.3 High 2020-05-07
CVE-2019-18261 Omron PLC CS series、CJ series和NJ series 安全漏洞 — Omron PLC CJ, CS and NJ Series 9.8 - 2019-12-16
CVE-2019-3766 Dell EMC Elastic Cloud Storage 安全漏洞 — Elastic Cloud Storage 9.8 - 2019-09-27
CVE-2019-3746 Dell EMC Integrated Data Protection Appliance 安全漏洞 — Integrated Data Protection Appliance 8.8 - 2019-09-27
CVE-2019-13918 Siemens SINEMA Remote Connect Server 安全漏洞 — SINEMA Remote Connect Server 9.8 - 2019-09-13
CVE-2019-5035 Google Nest Cam IQ Indoor 加密问题漏洞 — Nest Labs 10.0 - 2019-08-20
CVE-2019-0039 Juniper Networks Junos OS 信任管理问题漏洞 — Junos OS 8.1 - 2019-04-10
CVE-2019-6524 多款Moxa产品授权问题漏洞 — Moxa IKS, EDS 9.8 - 2019-03-05
CVE-2018-19021 Emerson DeltaV Distributed Control System 权限许可和访问控制漏洞 — Emerson DeltaV 6.5 - 2019-01-25
CVE-2018-14657 Red Hat Keycloak 安全特征问题漏洞 — keycloak 9.4 - 2018-11-13
CVE-2018-5469 多款Belden产品安全漏洞 — Hirschmann Automation and Control GmbH Classic Platform Switches 9.8 - 2018-03-06
CVE-2017-15887 Synology CardDAV Server 信任管理漏洞 — Synology CardDAV Server 9.8 - 2017-11-07
CVE-2017-7898 多款Rockwell Automation产品安全漏洞 — Rockwell Automation Allen-Bradley MicroLogix 1100 and 1400 9.8 - 2017-06-30
CVE-2017-7915 多款摩莎产品安全漏洞 — Moxa OnCell 9.8 - 2017-05-29
CVE-2016-9124 Revive Adserver 安全漏洞 — Revive Adserver All versions before 3.2.3 9.8 - 2017-03-28
CVE-2014-5414 Beckhoff Embedded PC图像和Automation Device Specification TwinCAT组件安全漏洞 — Embedded PC Images 9.1 Critical 2016-10-05

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