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

Goal: 1000 CNY · Raised: 1336 CNY

100%

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

1586 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, Other Gain 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 Design Divide 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 Design For 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 Design Where 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 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. For example, consider using libraries with authentication capabilities such as OpenSSL or the ESAPI Authenticator [REF-45].
Implementation, System Configuration, Operation When 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 ID Title CVSS Severity Published
CVE-2026-90579 cheshire-cat-ai Cheshire Cat AI custom_auth_handler.py _authorize_http_key missing authentication — Cheshire Cat AI 7.3 High 2026-09-13
CVE-2026-90524 jaychouchannel Tourism-Management-System Update Endpoint missing authentication — Tourism-Management-System 7.3 High 2026-09-13
CVE-2026-90513 simalexan api-lambda-send-email-ses API Gateway Endpoint template.yml SES.sendEmail missing authentication — api-lambda-send-email-ses 6.5 Medium 2026-09-13
CVE-2026-90504 vvbbnn00 WARP-Clash-API authorized missing authentication — WARP-Clash-API 7.3 High 2026-09-13
CVE-2026-90543 WWBN AVideo Missing Authentication via socketMessageLiveOwner.json.php — AVideo 5.3 Medium 2026-09-12
CVE-2026-90449 某网关特定认证模式下管理接口认证绕过 — Malcolm 6.9 Medium 2026-09-11
CVE-2026-89263 MoguBlog through 6.2 Missing Authentication on the Comment Email-Notification Endpoint — MoguBlog 5.3 Medium 2026-09-11
CVE-2026-89261 MoguBlog through 6.2 Missing Authentication for Elasticsearch Index Management Endpoints — MoguBlog 6.5 Medium 2026-09-11
CVE-2026-80462 Privilege Escalation in Progress Chef Automate — Chef Automate 10.0 Critical 2026-09-11
CVE-2026-89250 WWBN AVideo Unauthenticated File Read via getRecordedFile.php — AVideo 7.5 High 2026-09-11
CVE-2026-89176 Howyar|WeenyGenius - Missing Authentication — WeenyGenius 8.8 High 2026-09-11
CVE-2026-9336 IBM WebSphere Application Server prior to 9.0.5.29 and 8.5.5.31 are affected by multiple vulnerabilities — WebSphere Application Server 6.5 Medium 2026-09-10
CVE-2026-88285 GV-LPC2011/LPC2211 - Unauthenticated PTZ Control Service — GV-LPC2011/LPC2211 9.4 Critical 2026-09-10
CVE-2026-49362 Apache Artemis, Apache ActiveMQ Artemis: Missing Authentication in CORE Protocol Handler Allows Unauthorized Queue Creation — Apache Artemis - - 2026-09-10
CVE-2026-49363 Apache Artemis, Apache ActiveMQ Artemis: Pre-Authentication Information Disclosure in CORE Protocol Topology Subscription — Apache Artemis - - 2026-09-10
CVE-2026-49364 Apache Artemis, Apache Artemis, Apache ActiveMQ Artemis, Apache ActiveMQ Artemis: Pre-Authentication Cluster Credential Exposure to Discovered Peers — Apache Artemis - - 2026-09-10
CVE-2026-57967 Apache Artemis, Apache ActiveMQ Artemis: Missing authentication on CORE protocol session reattachment — Apache Artemis - - 2026-09-10
CVE-2026-67593 Apache Artemis, Apache Artemis, Apache ActiveMQ Artemis, Apache ActiveMQ Artemis: Pre-authentication Openwire protocol handling can result in queue deletion — Apache Artemis - - 2026-09-10
CVE-2026-87924 Rizwan17 inventory-management-system Invoice Generation invoice_bill.php missing authentication — inventory-management-system 6.5 Medium 2026-09-09
CVE-2026-87922 Rizwan17 inventory-management-system AJAX Backend process.php DBOperation.addCategory missing authentication — inventory-management-system 7.3 High 2026-09-09
CVE-2026-77974 Softish C6 Ear Camera and EarVision Android Application Missing authentication for critical function — EarVision Android application 8.0 High 2026-09-09
CVE-2026-79961 Dell Secure Connect Gateway 授权问题漏洞 — Secure Connect Gateway 5.0 - Application 5.3 Medium 2026-09-09
CVE-2026-11838 Improper Authorization in Yordam Informatics' Library Reservation System — Library Reservation System 4.3 Medium 2026-09-09
CVE-2026-85981 Unauthenticated Localhost Admin Panel in Auth0 AD/LDAP Connector — Auth0 AD/LDAP Connector 6.7 Medium 2026-09-08
CVE-2026-86808 moltis-org moltis vault.rs vault_recovery_handler missing authentication — moltis 7.3 High 2026-09-08
CVE-2026-73004 Windows Autopilot Tampering Vulnerability — Windows 10 Version 21H2 5.5 Medium 2026-09-08
CVE-2026-72964 Windows Internet Connection Sharing (ICS) Tampering Vulnerability — Windows 10 Version 1607 5.5 Medium 2026-09-08
CVE-2026-69674 Windows Modern Device Management (MDM) Security Feature Bypass Vulnerability — Windows 10 Version 1809 5.5 Medium 2026-09-08
CVE-2026-69321 Windows Power Dependency Coordinator Tampering Vulnerability — Windows 10 Version 1607 5.5 Medium 2026-09-08
CVE-2026-83991 Windows Cloud Files Mini Filter Driver Tampering Vulnerability — Windows 10 Version 1809 5.5 Medium 2026-09-08

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