目标达成 感谢每一位支持者 — 我们达成了 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-2023-3484 GitLab 安全漏洞 — GitLab 8.0 High 2023-07-21
CVE-2023-3459 WordPress Plugin Export and Import Users and Customers 安全漏洞 — Export and Import Users and Customers 7.2 High 2023-07-18
CVE-2023-3613 Mattermost 安全漏洞 — Mattermost Plugins 3.5 Low 2023-07-17
CVE-2023-3590 Mattermost 安全漏洞 — Mattermost 3.1 Low 2023-07-17
CVE-2023-3586 Mattermost 安全漏洞 — Mattermost 4.2 Medium 2023-07-17
CVE-2023-3584 Mattermost 安全漏洞 — Mattermost 3.1 Low 2023-07-17
CVE-2023-3582 Mattermost 安全漏洞 — Mattermost 4.3 Medium 2023-07-17
CVE-2023-2759 TapHome 授权问题漏洞 — Core Platform 8.8 High 2023-07-17
CVE-2023-2576 GitLab 安全漏洞 — GitLab 4.3 Medium 2023-07-13
CVE-2023-3444 GitLab 注入漏洞 — GitLab 5.7 Medium 2023-07-13
CVE-2023-35908 Apache Airflow 安全漏洞 — Apache Airflow 5.3 - 2023-07-12
CVE-2023-30428 Apache Pulsar 安全漏洞 — Apache Pulsar Broker 8.2 High 2023-07-12
CVE-2023-30429 Apache Pulsar 安全漏洞 — Apache Pulsar 9.6 Critical 2023-07-12
CVE-2023-37579 Apache Pulsar 安全漏洞 — Apache Pulsar Function Worker 8.2 High 2023-07-12
CVE-2023-3485 Temporal Server 安全漏洞 — Temporal Server 3.0 Low 2023-06-30
CVE-2023-35165 AWS Cloud Development Kit 安全漏洞 — aws-cdk 6.6 Medium 2023-06-23
CVE-2023-0971 SiLabs Z-Wave over IP Gateway 安全漏洞 — Z/IP Gateway 9.6 Critical 2023-06-21
CVE-2023-35166 XWiki Platform 安全漏洞 — xwiki-platform 10.0 Critical 2023-06-20
CVE-2022-22307 IBM Security Guardium 安全漏洞 — Security Guardium 4.4 Medium 2023-06-15
CVE-2023-29296 Adobe Commerce 安全漏洞 — Magento Commerce 4.3 Medium 2023-06-15
CVE-2023-29295 Adobe Commerce 安全漏洞 — Magento Commerce 4.3 Medium 2023-06-15
CVE-2023-29288 Adobe Commerce 安全漏洞 — Adobe Commerce 4.3 Medium 2023-06-15
CVE-2023-22248 Adobe Commerce 安全漏洞 — Magento Commerce 7.5 High 2023-06-15
CVE-2023-32061 Discourse 安全漏洞 — discourse 5.4 Medium 2023-06-13
CVE-2020-36710 WordPress Plugin WPS Hide Login 安全漏洞 — WPS Hide Login 5.3 Medium 2023-06-07
CVE-2023-32683 Matrix Synapse 代码问题漏洞 — synapse 3.5 Low 2023-06-06
CVE-2023-1779 MB connect line mbCONNECT24和mymbCONNECT24 信息泄露漏洞 — mbCONNECT24 4.3 Medium 2023-06-06
CVE-2023-3066 Mobatime 安全漏洞 — Mobatime mobile application AMXGT100 8.1 High 2023-06-05
CVE-2023-3033 Mobatime 安全漏洞 — Mobatime web application 6.8 Medium 2023-06-02
CVE-2023-28698 Wade Graphic Design FANTSY 安全漏洞 — FANTSY 9.8 Critical 2023-06-02

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