Goal Reached Thanks to every supporter — we hit 100%!

Goal: 1000 CNY · Raised: 1000 CNY

100.0%

CWE-307 (过多认证尝试的限制不恰当) — Vulnerability Class 332

332 vulnerabilities classified as CWE-307 (过多认证尝试的限制不恰当). AI Chinese analysis included.

CWE-307 represents a critical authentication weakness where systems fail to adequately restrict the number of login attempts within a specific timeframe. This vulnerability is typically exploited by attackers conducting brute-force or credential stuffing attacks, allowing them to systematically guess valid usernames and passwords until access is granted. Without proper safeguards, automated tools can rapidly cycle through extensive password dictionaries, compromising user accounts and sensitive data. To mitigate this risk, developers must implement robust countermeasures such as account lockout policies after a defined number of failures, progressive delays between login attempts, or CAPTCHA challenges to distinguish human users from bots. Additionally, integrating multi-factor authentication provides an essential layer of defense, ensuring that even if credentials are compromised, unauthorized access remains blocked.

MITRE CWE Description
The product does not implement sufficient measures to prevent multiple failed authentication attempts within a short time frame.
Common Consequences (1)
Access ControlBypass 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.
Mitigations (2)
Architecture and DesignCommon 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 DesignUse 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]
Examples (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 IDTitleCVSSSeverityPublished
CVE-2025-52997 File Browser Insecurely Handles Passwords — filebrowser 5.9 Medium2025-06-30
CVE-2025-4383 Authentication Bypass in Art-In Systems' Wi-Fi Cloud Hotspot — Wi-Fi Cloud Hotspot 9.3 Critical2025-06-24
CVE-2025-2171 Aviatrix Controller 安全漏洞 — Controller 7.5AIHighAI2025-06-23
CVE-2025-52916 Yealink YMCS RPS 安全漏洞 — RPS 2.2 Low2025-06-21
CVE-2025-47951 Weblate lacks rate limiting when verifying second factor — weblate 4.9 Medium2025-06-16
CVE-2025-6030 Autoeastern Smart Keyless Entry System Replay Attack — Cyclone Matrix TRF 8.8AIHighAI2025-06-13
CVE-2025-6029 KIA-branded Aftermarket Generic Smart Keyless Entry System Replay Attack — Aftermarket Generic Smart Keyless Entry System 8.8AIHighAI2025-06-13
CVE-2025-43863 vantage6 lacks brute-force protection on change password functionality — vantage6 8.8AIHighAI2025-06-12
CVE-2025-49195 No protection against brute-force attacks — SICK Media Server 5.3 Medium2025-06-12
CVE-2025-49186 No brute-force protection — Field Analytics 5.3 Medium2025-06-12
CVE-2025-5864 Tenda TDSEE App Password Reset Confirmation Code ConfirmSmsCode excessive authentication — TDSEE App 3.7 Low2025-06-09
CVE-2025-48014 Improper Restriction of Excessive Authentication Attempts — SEL-5056 Software-Defined Network Flow Controller 7.5 High2025-05-20
CVE-2025-48187 RAGFlow 安全漏洞 — RAGFlow 9.1 Critical2025-05-17
CVE-2025-46739 Improper Restriction of Excessive Authentication Attempts — SEL Blueframe OS 8.1 High2025-05-12
CVE-2025-20196 Cisco IOS和Cisco IOS XE 安全漏洞 — IOS 5.3 Medium2025-05-07
CVE-2025-3709 Flowring Technology Agentflow - Account Lockout Bypass — Agentflow 9.8 Critical2025-05-02
CVE-2025-42600 Brute Force Attack Vulnerability in Meon KYC solutions — KYC solutions 9.8 -2025-04-23
CVE-2025-3556 ScriptAndTools eCommerce-website-in-PHP login.php excessive authentication — eCommerce-website-in-PHP 3.7 Low2025-04-14
CVE-2025-3555 ScriptAndTools eCommerce-website-in-PHP login.php excessive authentication — eCommerce-website-in-PHP 3.7 Low2025-04-14
CVE-2025-3129 Access code - Moderately critical - Access bypass - SA-CONTRIB-2025-028 — Access code 9.8AICriticalAI2025-04-02
CVE-2025-0417 Valmet DNA Lack of protection against brute force attacks — Valmet DNA 9.1AICriticalAI2025-04-01
CVE-2025-2911 Improper Restriction of Excessive Authentication Attempts vulnerability in MeetMe products — MeetMe 9.1 -2025-03-28
CVE-2025-1496 Improper Authentication in BG-TEK's Coslat Hotspot — Coslat Hotspot 6.5 Medium2025-03-20
CVE-2024-12039 Improper Restriction of Excessive Authentication Attempts in langgenius/dify — langgenius/dify 9.8 -2025-03-20
CVE-2024-51476 IBM Concert Software information disclosure — Concert Software 7.5 High2025-03-06
CVE-2025-23368 Org.wildfly.core:wildfly-elytron-integration: wildfly elytron brute force attack via cli 8.1 High2025-03-04
CVE-2025-1629 Excitel Broadband Private my Excitel App One-Time Password excessive authentication — my Excitel App 3.5 Low2025-02-24
CVE-2025-24806 Regulation applies separately to Username-based logins to Email-based logins in authelia — authelia 9.1 -2025-02-19
CVE-2025-22645 WordPress Real Estate Manager plugin <= 7.3 - Captcha Bypass Vulnerability vulnerability — Real Estate Manager 5.3 Medium2025-02-18
CVE-2024-23106 Fortinet FortiClientEMS 安全漏洞 — FortiClientEMS 7.7 High2025-01-14

Vulnerabilities classified as CWE-307 (过多认证尝试的限制不恰当) represent 332 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.