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

目标: 1000 元 · 已筹: 1336

100%

CWE-269 特权管理不恰当 类漏洞列表 1199

CWE-269 特权管理不恰当 类弱点 1199 条 CVE 漏洞汇总,含 AI 中文分析。

CWE-269 属于权限管理不当漏洞,指产品未能正确分配、修改、跟踪或检查用户权限,导致攻击者获得非预期的控制范围。攻击者常利用此缺陷提升权限或越权访问敏感资源。开发者应实施最小权限原则,严格验证每次操作的身份与权限,确保权限分配、变更及撤销过程的安全性与完整性,从而防止未授权访问。

MITRE CWE 官方描述
CWE:CWE-269 权限管理不当 英文:产品未正确分配、修改、跟踪或检查某行为者(actor)的权限,从而为该行为者创建了一个非预期的控制范围。
常见影响 (1)
Access ControlGain Privileges or Assume Identity
缓解措施 (3)
Architecture and Design, OperationVery carefully manage the setting, management, and handling of privileges. Explicitly manage trust zones in the software.
Architecture and DesignFollow the principle of least privilege when assigning access rights to entities in a software system.
Architecture and DesignConsider following the principle of separation of privilege. Require multiple conditions to be met before permitting access to a system resource.
代码示例 (2)
This code temporarily raises the program's privileges to allow creation of a new user folder.
def makeNewUserDir(username): if invalidUsername(username): #avoid CWE-22 and CWE-78 print('Usernames cannot contain invalid characters') return False try: raisePrivileges() os.mkdir('/home/' + username) lowerPrivileges() except OSError: print('Unable to create new user directory for user:' + username) return False return True
Bad · Python
The following example demonstrates the weakness.
seteuid(0); /* do some stuff */ seteuid(getuid());
Bad · C
CVE ID标题CVSS风险等级Published
CVE-2026-7467 WordPress plugin Read More & Accordion 安全漏洞 — Read More & Accordion 8.8 High2026-05-20
CVE-2026-7284 WordPress plugin Easy Elements for Elementor – Addons & Website Templates 安全漏洞 — Easy Elements for Elementor – Addons & Website Templates 9.8 Critical2026-05-20
CVE-2026-8719 WordPress plugin AI Engine 安全漏洞 — AI Engine – The Chatbot, AI Framework & MCP for WordPress 8.8 High2026-05-17
CVE-2026-45395 Open WebUI 安全漏洞 — open-webui 7.2 High2026-05-15
CVE-2026-45675 Open WebUI 安全漏洞 — open-webui 8.1 High2026-05-15
CVE-2026-6228 WordPress plugin Frontend Admin by DynamiApps 安全漏洞 — Frontend Admin by DynamiApps 8.8 High2026-05-15
CVE-2025-62625 AMD Processors 安全漏洞 — AMD Ryzen™ 4000 Series Mobile Processors with Radeon™ Graphics--2026-05-14
CVE-2026-5193 WordPress plugin Essential Addons for Elementor 安全漏洞 — Essential Addons for Elementor – Popular Elementor Templates & Widgets 6.5 Medium2026-05-14
CVE-2026-42289 ChurchCRM 安全漏洞 — CRM 8.8 High2026-05-12
CVE-2026-44224 wiki.js 安全漏洞 — wiki--2026-05-12
CVE-2026-44218 ciguard 安全漏洞 — ciguard 3.0 Low2026-05-12
CVE-2026-33821 Microsoft Dynamics 365 Customer Insights 安全漏洞 — Dynamics 365 7.7 High2026-05-12
CVE-2026-43886 Outline 安全漏洞 — outline 8.2 High2026-05-11
CVE-2026-42609 Grav 安全漏洞 — grav 8.1 High2026-05-11
CVE-2026-26946 Dell ECS 安全漏洞 — ECS 6.7 Medium2026-05-11
CVE-2026-42562 Plainpad 安全漏洞 — plainpad 8.3 High2026-05-09
CVE-2026-41163 Bubblewrap 安全漏洞 — bubblewrap 8.4 -2026-05-09
CVE-2026-44987 SysReptor 安全漏洞 — sysreptor 3.8 Low2026-05-08
CVE-2026-42185 People 安全漏洞 — people 5.5 Medium2026-05-08
CVE-2026-40001 ZTE PROCESS Guard 安全漏洞 — ZTE PROCESS Guard service 5.2 Medium2026-05-06
CVE-2026-7778 runZero Platform 安全漏洞 — Platform 5.0 Medium2026-05-05
CVE-2025-13618 WordPress plugin Mentoring 安全漏洞 — Mentoring 9.8 Critical2026-05-05
CVE-2026-24072 Apache HTTP Server 安全漏洞 — Apache HTTP Server 5.5 -2026-05-04
CVE-2026-7641 WordPress plugin Import and export users and customers 安全漏洞 — Import and export users and customers 8.8 High2026-05-02
CVE-2026-6389 IBM Turbonomic prometurbo agent 安全漏洞 — Turbonomic prometurbo agent 8.8 High2026-04-30
CVE-2026-5141 TÜBİTAK BİLGEM Pardus Software Center 安全漏洞 — Pardus Software Center 8.8 High2026-04-29
CVE-2026-6741 WordPress plugin LatePoint 安全漏洞 — LatePoint – Calendar Booking Plugin for Appointments and Events 8.8 High2026-04-27
CVE-2026-7106 WordPress plugin Highland Software Custom Role Manager 安全漏洞 — Highland Software Custom Role Manager 8.8 High2026-04-27
CVE-2026-41359 OpenClaw 安全漏洞 — OpenClaw 7.1 High2026-04-23
CVE-2026-1726 IBM Guardium Key Lifecycle Manager 安全漏洞 — Guardium Key Lifecycle Manager 4.3AIMediumAI2026-04-22

CWE-269(特权管理不恰当) 是常见的弱点类别,本平台收录该类弱点关联的 1199 条 CVE 漏洞。