目标达成 感谢每一位支持者 — 我们达成了 100% 目标!

目标: 1000 元 · 已筹: 1336

100%

CWE-863 授权机制不正确 类漏洞列表 2077

CWE-863 授权机制不正确 类弱点 2077 条 CVE 漏洞汇总,含 AI 中文分析。

CWE-863属于授权检查缺陷,指系统在验证用户访问权限时未能正确执行检查逻辑。攻击者通常利用此漏洞,通过构造恶意请求或篡改参数,绕过权限控制以访问未授权资源或执行敏感操作。开发者应避免此问题,需确保在关键操作前严格验证用户身份与权限,采用最小权限原则,并实施集中式的授权管理,防止逻辑绕过或硬编码错误。

MITRE CWE 官方描述
CWE:CWE-863 Incorrect Authorization(不正确的授权) 英文:当主体(actor)尝试访问资源或执行操作时,产品会执行授权检查,但未能正确执行该检查。
常见影响 (5)
Confidentiality Read Application Data, Read Files or Directories
An attacker could bypass intended access restrictions to read sensitive data, either by reading the data directly from a data store that is not correctly restricted, or by accessing insufficiently-protected, privileged functionality to read the data.
Integrity Modify Application Data, Modify Files or Directories
An attacker could bypass intended access restrictions to modify sensitive data, either by writing the data directly to a data store that is not correctly restricted, or by accessing insufficiently-protected, privileged functionality to write the data.
Access Control Gain Privileges or Assume Identity, Bypass Protection Mechanism
An attacker could bypass intended access restrictions to gain privileges by modifying or reading critical data directly, or by accessing privileged functionality.
Confidentiality, Integrity, Availability Execute Unauthorized Code or Commands
An attacker could use elevated privileges to execute unauthorized commands or code.
Availability DoS: Crash, Exit, or Restart, DoS: Resource Consumption (CPU), DoS: Resource Consumption (Memory), DoS: Resource Consumption (Other)
An attacker could gain unauthorized access to resources on the system and excessively consume those resources, leading to a denial of service.
缓解措施 (5)
Architecture and Design Divide the product into anonymous, normal, privileged, and administrative areas. Reduce the attack surface by carefully mapping roles with data and functionality. Use role-based access control (RBAC) [REF-229] to enforce the roles at the appropriate boundaries. Note that this approach may not protect against horizontal authorization, i.e., it will not protect a user from attacking others with the …
Architecture and Design Ensure that access control checks are performed related to the business logic. These checks may be different than the access control checks that are applied to more generic resources such as files, connections, processes, memory, and database records. For example, a database may restrict access for medical records to a specific database user, but each record might only be intended to be accessible…
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 authorization frameworks such as the JAAS Authorization Framework [REF-233] and the OWASP ESAPI Access Control feature [REF-45].
Architecture and Design For web applications, make sure that the access control mechanism is enforced correctly at the server side on every page. Users should not be able to access any unauthorized functionality or information by simply requesting direct access to that page. One way to do this is to ensure that all pages containing sensitive information are not cached, and that all such pages restrict access to requests …
System Configuration, Installation Use the access control capabilities of your operating system and server environment and define your access control lists accordingly. Use a "default deny" policy when defining these ACLs.
代码示例 (1)
The following code could be for a medical records application. It displays a record to already authenticated users, confirming the user's authorization using a value stored in a cookie.
$role = $_COOKIES['role']; if (!$role) { $role = getRole('user'); if ($role) { // save the cookie to send out in future responses setcookie("role", $role, time()+60*60*2); } else{ ShowLoginScreen(); die("\n"); } } if ($role == 'Reader') { DisplayMedicalHistory($_POST['patient_ID']); } else{ die("You are not Authorized to view this record\n"); }
Bad · PHP
CVE ID 标题 CVSS 风险等级 Published
CVE-2026-89267 Starlette-admin 0.17.1 白名单绕过漏洞 — starlette-admin 4.3 Medium 2026-09-12
CVE-2026-90450 应用角色授权查找默认放行:未注册处理器可被任意用户访问 — Malcolm 5.3 Medium 2026-09-11
CVE-2026-90460 OpenStack Keystone 29.0.3 前 API 认证逻辑缺陷 — Keystone 7.6 High 2026-09-11
CVE-2026-89013 Dolibarr 23.0.4 权限绕过漏洞 — Dolibarr 7.5 High 2026-09-11
CVE-2026-89151 Forgejo 16.0.4前受限API令牌权限越界 — Forgejo 3.5 Low 2026-09-11
CVE-2026-78134 strongSwan 4.5.0-6.0.7 EAP插件访问控制缺陷 — strongSwan 7.1 High 2026-09-11
CVE-2026-81905 Concrete CMS 9.5.3以下 哈希类型校验缺失漏洞 — Concrete CMS 6.3 Medium 2026-09-10
CVE-2026-75624 IBM App Connect 提权及拒绝服务漏洞 — App Connect Enterprise 8.8 High 2026-09-10
CVE-2026-85025 Langflow 远程代码执行漏洞 — Langflow OSS 9.8 Critical 2026-09-10
CVE-2026-87107 HashiCorp Consul 授权问题漏洞 — Consul 5.4 Medium 2026-09-10
CVE-2026-87090 HashiCorp Consul 授权问题漏洞 — Consul 8.3 High 2026-09-10
CVE-2026-88044 rclone RC 认证代理绕过 — rclone 9.1 Critical 2026-09-10
CVE-2026-88939 Knows 0.33.0 授权绕过漏洞 — knowns 8.3 High 2026-09-10
CVE-2026-88006 Open WebUI 授权问题漏洞 — open-webui 6.5 Medium 2026-09-10
CVE-2026-88005 Open WebUI 授权问题漏洞 — open-webui 6.5 Medium 2026-09-10
CVE-2026-88894 Snipe-IT 8.7.2前预定义套件授权绕过漏洞 — snipe-it 5.4 Medium 2026-09-10
CVE-2026-88884 Renovate 44.3.1 之前 认证绕过漏洞 — renovate 5.8 Medium 2026-09-10
CVE-2026-88862 Capgo 通过 x-limited-key-id 认证绕过漏洞 — capgo.app 8.8 High 2026-09-10
CVE-2026-88860 Capgo 授权绕过漏洞 — capgo.app 6.3 Medium 2026-09-10
CVE-2026-87803 Countly 授权问题漏洞 — countly-server 7.1 High 2026-09-10
CVE-2026-46460 Dell PowerScale OneFS 授权问题漏洞 — PowerScale OneFS 3.5 Low 2026-09-09
CVE-2026-86773 Grokability Snipe-IT 授权问题漏洞 — snipe-it 5.4 Medium 2026-09-09
CVE-2026-86760 Grokability Snipe-IT 授权问题漏洞 — snipe-it 5.4 Medium 2026-09-09
CVE-2026-86755 Grokability Snipe-IT 授权问题漏洞 — snipe-it 5.4 Medium 2026-09-09
CVE-2026-86753 Grokability Snipe-IT 授权问题漏洞 — snipe-it 4.3 Medium 2026-09-09
CVE-2026-86754 Grokability Snipe-IT 授权问题漏洞 — snipe-it 7.3 High 2026-09-09
CVE-2026-86752 Grokability Snipe-IT 授权问题漏洞 — snipe-it 5.4 Medium 2026-09-09
CVE-2026-86750 Grokability Snipe-IT 授权问题漏洞 — snipe-it 7.7 High 2026-09-09
CVE-2026-86747 Grokability Snipe-IT 授权问题漏洞 — snipe-it 5.4 Medium 2026-09-09
CVE-2026-14892 Tanium Server 授权问题漏洞 — Tanium Server 4.3 Medium 2026-09-09

CWE-863(授权机制不正确) 是常见的弱点类别,本平台收录该类弱点关联的 2077 条 CVE 漏洞。