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

Goal: 1000 CNY · Raised: 1000 CNY

100.0%

CWE-306 (关键功能的认证机制缺失) — Vulnerability Class 1119

1119 vulnerabilities classified as CWE-306 (关键功能的认证机制缺失). AI Chinese analysis included.

CWE-306 represents a critical authentication weakness where software fails to verify user identity before executing sensitive operations or consuming substantial resources. Attackers typically exploit this vulnerability by directly invoking administrative endpoints, initiating high-cost processes, or accessing restricted data without valid credentials, effectively bypassing security controls. This oversight allows unauthorized users to perform actions intended only for authenticated individuals, leading to privilege escalation, data breaches, or denial of service through resource exhaustion. To mitigate this risk, developers must implement robust access control mechanisms that strictly enforce authentication checks on all critical functions. This involves integrating secure session management, validating tokens for every request, and applying the principle of least privilege to ensure that only verified users with appropriate permissions can trigger sensitive operations or consume significant system resources.

MITRE CWE Description
The product does not perform any authentication for functionality that requires a provable user identity or consumes a significant amount of resources.
Common Consequences (1)
Access Control, OtherGain Privileges or Assume Identity, Varies by Context
Exposing critical functionality essentially provides an attacker with the privilege level of that functionality. The consequences will depend on the associated functionality, but they can range from reading or modifying sensitive data, accessing administrative or other privileged functionality, or p…
Mitigations (5)
Architecture and DesignDivide the software into anonymous, normal, privileged, and administrative areas. Identify which of these areas require a proven user identity, and use a centralized authentication capability. Identify all potential communication channels, or other means of interaction with the software, to ensure that all channels are appropriately protected, including those channels that are assumed to be access…
Architecture and DesignFor any security checks that are performed on the client side, ensure that these checks are duplicated on the server side, in order to avoid CWE-602. Attackers can bypass the client-side checks by modifying values after the checks have been performed, or by changing the client to remove the client-side checks entirely. Then, these modified values would be submitted to the server.
Architecture and DesignWhere possible, avoid implementing custom, "grow-your-own" authentication routines and consider using authentication capabilities as provided by the surrounding framework, operating system, or environment. These capabilities may avoid common weaknesses that are unique to authentication; support automatic auditing and tracking; and make it easier to provide a clear separation between authentication…
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. For example, consider using libraries with authentication capabilities such as OpenSSL or the ESAPI Authenticator [REF-45].
Implementation, System Configuration, OperationWhen storing data in the cloud (e.g., S3 buckets, Azure blobs, Google Cloud Storage, etc.), use the provider's controls to require strong authentication for users who should be allowed to access the data [REF-1297] [REF-1298] [REF-1302].
Examples (2)
In the following Java example the method createBankAccount is used to create a BankAccount object for a bank management application.
public BankAccount createBankAccount(String accountNumber, String accountType, String accountName, String accountSSN, double balance) { BankAccount account = new BankAccount(); account.setAccountNumber(accountNumber); account.setAccountType(accountType); account.setAccountOwnerName(accountName); account.setAccountOwnerSSN(accountSSN); account.setBalance(balance); return account; }
Bad · Java
private boolean isUserAuthentic = false; // authenticate user, // if user is authenticated then set variable to true // otherwise set variable to false public boolean authenticateUser(String username, String password) { ... } public BankAccount createNewBankAccount(String accountNumber, String accountType, String accountName, String accountSSN, double balance) { BankAccount account = null; if (isUserAuthentic) { account = new BankAccount(); account.setAccountNumber(accountNumber); account.setAccountType(accountType); account.setAccountOwnerName(accountName); account.setAccountOwnerSSN(accountS
Good · Java
In 2022, the OT:ICEFALL study examined products by 10 different Operational Technology (OT) vendors. The researchers reported 56 vulnerabilities and said that the products were "insecure by design" [REF-1283]. If exploited, these vulnerabilities often allowed adversaries to change how the products operated, ranging from denial of service to changing the code that the products executed. Since these…
CVE IDTitleCVSSSeverityPublished
CVE-2025-4555 ZONG YU Okcat Parking Management Platform - Missing Authentication — Okcat Parking Management Platform 9.8 Critical2025-05-12
CVE-2025-4382 Grub2: grub allow access to encrypted device through cli once root device is unlocked via tpm 5.9 Medium2025-05-09
CVE-2025-3759 Missing Authentication for Changing Device Configuration in WF2220 — WF2220 9.8AICriticalAI2025-05-08
CVE-2025-3758 Exposure of Device Configuration without Authentication in WF2220 — WF2220 7.5AIHighAI2025-05-08
CVE-2025-20210 Cisco Catalyst Center Unprotected API Endpoint — Cisco Digital Network Architecture Center (DNA Center) 7.3 High2025-05-07
CVE-2025-4268 TOTOLINK A720R cstecgi.cgi missing authentication — A720R 5.3 Medium2025-05-05
CVE-2025-1495 IBM Business Automation Workflow missing authentication — IBM Business Automation Workflow 4.3 Medium2025-05-03
CVE-2025-4019 20120630 Novel-Plus GeneratorController.java genCode missing authentication — Novel-Plus 7.3 High2025-04-28
CVE-2025-4018 20120630 Novel-Plus CrawlController.java addCrawlSource missing authentication — Novel-Plus 5.3 Medium2025-04-28
CVE-2025-4015 20120630 Novel-Plus SessionController.java list missing authentication — Novel-Plus 5.3 Medium2025-04-28
CVE-2025-46275 Planet Technology Network Products Missing Authentication for Critical Function — WGS-804HPT-V2 9.8 Critical2025-04-24
CVE-2025-32377 Rasa Pro Missing Authentication For Voice Connector APIs — rasa-pro-security-advisories 6.5 Medium2025-04-18
CVE-2025-32433 Erlang/OTP SSH Vulnerable to Pre-Authentication RCE — otp 10.0 Critical2025-04-16
CVE-2025-27538 MFA Enforcement Bypass Allows Unauthorized Removal of MFA for Other Users — Mattermost 2.2 Low2025-04-16
CVE-2025-30215 NATS-Server Fails to Authorize Certain Jetstream Admin APIs — nats-server 9.6 Critical2025-04-15
CVE-2025-32782 Ash Authentication email link auto-click account confirmation vulnerability — ash_authentication 5.3 Medium2025-04-15
CVE-2025-2567 Lantronix Xport Missing Authentication for Critical Function — Xport 9.8 Critical2025-04-15
CVE-2025-3474 Panels - Critical - Access bypass - SA-CONTRIB-2025-033 — Panels 9.1AICriticalAI2025-04-09
CVE-2025-29870 Inaba Denki Sangyo Wi-Fi AP UNIT 访问控制错误漏洞 — AC-WPS-11ac 7.5 High2025-04-09
CVE-2024-41793 Siemens SENTRON 7KT PAC1260 Data Manager 访问控制错误漏洞 — SENTRON 7KT PAC1260 Data Manager 8.6 High2025-04-08
CVE-2024-41791 Siemens SENTRON 7KT PAC1260 Data Manager 访问控制错误漏洞 — SENTRON 7KT PAC1260 Data Manager 7.3 High2025-04-08
CVE-2025-3248 Langflow < 1.3.0 Unauthenticated RCE via /api/v1/validate/code — langflow 9.8 Critical2025-04-07
CVE-2025-0257 HCL DevOps Deploy / HCL Launch is susceptible to unauthorized access to other services — HCL DevOps Deploy / HCL Launch 6.3 Medium2025-04-02
CVE-2025-25060 Hammock AssetView 访问控制错误漏洞 — AssetView 9.8 -2025-04-02
CVE-2024-56469 IBM UrbanCode Deploy (UCD) / IBM DevOps Deploy missing authentication — UrbanCode Deploy 6.3 Medium2025-03-27
CVE-2024-45356 Xiaomi phone framework has unauthorized access vulnerability — Xiaomi phone framework has unauthorized access vulnerability 7.3 High2025-03-27
CVE-2024-45355 Xiaomi phone framework has unauthorized access vulnerability — Xiaomi phone framework 5.5 Medium2025-03-27
CVE-2024-45483 Missing GRUB password in B&R APROL — APROL 6.1AIMediumAI2025-03-25
CVE-2025-0256 HCL DevOps Deploy / HCL Launch is susceptible to a sensitive information disclosure — HCL DevOps Deploy / HCL Launch 4.3 Medium2025-03-24
CVE-2025-25068 Bypassing MFA Enforcement on Plugin Endpoints — Mattermost 7.5 High2025-03-21

Vulnerabilities classified as CWE-306 (关键功能的认证机制缺失) represent 1119 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.