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

Goal: 1000 CNY · Raised: 1325 CNY

100%

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

1213 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-2026-8335 Missing authentication in Aix-DB — Aix-DB--2026-06-10
CVE-2026-9045 Lenovo Accessories and Display Manager for Enterprise 访问控制错误漏洞 — Accessories and Display Manager for Enterprise 7.8 High2026-06-10
CVE-2026-53469 Migration-planner: unprotected delete endpoint wipes all tenant data 9.1 Critical2026-06-10
CVE-2026-50512 Microsoft PC Manager Elevation of Privilege Vulnerability — Microsoft PC Manager 7.8 High2026-06-09
CVE-2026-50507 Windows BitLocker Security Feature Bypass Vulnerability — Windows 10 Version 1607 6.8 Medium2026-06-09
CVE-2026-9212 Insufficient authentication and input validation in certain NETGEAR products — LBR1020--2026-06-09
CVE-2023-54352 WordPress Seotheme Remote Code Execution Unauthenticated — Travelscape 9.8 Critical2026-06-08
CVE-2023-54350 WordPress Augmented-Reality Plugin Remote Code Execution Unauthenticated — Augmented Reality 7.5 High2026-06-08
CVE-2025-71318 NetMan 204 Missing Authentication for Administrative Functions — NetMan 204 9.8 Critical2026-06-05
CVE-2026-45327 TinyIce: Missing authentication on WebRTC ingest endpoint allows unauthorized stream injection — tinyice 8.2 High2026-06-05
CVE-2024-27892 On affected platforms running Arista EOS with OpenConfig configured, a gNMI Set request can be run when it should have been rejected (SSL Profiles Enabled). — EOS 9.6 Critical2026-06-04
CVE-2024-27890 On affected platforms running Arista EOS with OpenConfig configured, a gNMI Set request can be run when it should have been rejected (No SSL Profiles Enabled). — EOS 9.6 Critical2026-06-04
CVE-2026-25550 Seagull Software BarTender Unauthenticated RCE via .NET Remoting Service — BarTender 2010 9.8 Critical2026-06-04
CVE-2019-25738 WordPress Hybrid Composer 1.4.6 Unauthenticated Settings Change — Hybrid Composer 9.8 Critical2026-06-04
CVE-2026-50225 Account Creation Exhaustion — Connect M6E 5G Portable WiFi Router--2026-06-04
CVE-2026-10617 nextlevelbuilder GoClaw Webhook Verification auth.go resolveAuth missing authentication — GoClaw 7.3 High2026-06-02
CVE-2026-0611 Spacelabs Healthcare Sentinel 10.5.x < 11.6.0 Unauthenticated RCE via .NET Remoting — Sentinel 9.8 Critical2026-06-02
CVE-2026-42074 OpenClaude: Sandbox Bypass via Model-Controlled `dangerouslyDisableSandbox` Input — openclaude--2026-06-02
CVE-2026-24090 Missing Authentication for Critical Function in HLOS — Snapdragon 7.1 High2026-06-01
CVE-2026-24088 Missing Authentication for Critical Function in Boot — Snapdragon 8.2 High2026-06-01
CVE-2026-10283 Bottelet DaybydayCRM Setting missing authentication — DaybydayCRM 6.3 Medium2026-06-01
CVE-2026-10281 Enderfga claw-orchestrator API Endpoint embedded-server.ts EmbeddedServer missing authentication — claw-orchestrator 7.3 High2026-06-01
CVE-2026-44211 Cline Kanban Server has a Cross-Origin WebSocket Hijacking Vulnerability — cline 9.6 Critical2026-06-01
CVE-2026-10243 code-projects Smart Parking System Admin Endpoint missing authentication — Smart Parking System 7.3 High2026-06-01
CVE-2018-25412 Delta Sql 1.8.2 Arbitrary File Upload via docs_upload.php — Delta Sql 9.8 Critical2026-05-30
CVE-2026-9051 Authentication Bypass Vulnerability in NI SystemLink Enterprise — SystemLink Enterprise 9.1 Critical2026-05-29
CVE-2026-5768 Fourth Frontier Frontier X Mobile Application, Frontier X2 Missing Authentication for Critical Function — Frontier X Android application 8.8 High2026-05-29
CVE-2026-45610 WWBN AVideo plugin/LoginControl/set.json.php: 2FA toggle endpoint has no CSRF protection, letting an attacker page silently disable a logged-in victim's 2FA — AVideo 5.7 Medium2026-05-29
CVE-2026-49195 Predator Connect W6x: unauthenticated Debug Service — Predator Connect W6x--2026-05-29
CVE-2026-8732 WP Maps Pro <= 6.1.0 - Unauthenticated Privilege Escalation via Administrator Account Creation to wpgmp_temp_access_ajax AJAX Action — WP Maps Pro 9.8 Critical2026-05-29

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