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

目标: 1000 元 · 已筹: 1336

100%

CWE-288 使用候选路径或通道进行的认证绕过 类漏洞列表 546

CWE-288 使用候选路径或通道进行的认证绕过 类弱点 546 条 CVE 漏洞汇总,含 AI 中文分析。

CWE-288 指认证绕过漏洞,即系统虽设有认证机制,却存在无需验证的备用路径或通道。攻击者常利用该缺陷,通过未受保护的接口或隐藏入口直接访问受限资源,从而规避身份校验。开发者应确保所有访问入口均强制实施统一且严格的认证策略,全面审查系统架构,消除任何未授权访问的潜在路径,以保障系统安全性。

MITRE CWE 官方描述
CWE:CWE-288 通过备用路径或通道绕过身份验证 (Authentication Bypass Using an Alternate Path or Channel) 英文:产品需要身份验证,但产品存在一个不需要身份验证的备用路径或通道。
常见影响 (1)
Access Control Bypass Protection Mechanism
缓解措施 (1)
Architecture and Design Funnel all access through a single choke point to simplify how users can access a resource. For every access, perform a check to determine if the user has permissions to access the resource.
代码示例 (1)
Register SECURE_ME is located at address 0xF00. A mirror of this register called COPY_OF_SECURE_ME is at location 0x800F00. The register SECURE_ME is protected from malicious agents and only allows access to select, while COPY_OF_SECURE_ME is not. Access control is implemented using an allowlist (as indicated by a…
module foo_bar(data_out, data_in, incoming_id, address, clk, rst_n); output [31:0] data_out; input [31:0] data_in, incoming_id, address; input clk, rst_n; wire write_auth, addr_auth; reg [31:0] data_out, acl_oh_allowlist, q; assign write_auth = | (incoming_id & acl_oh_allowlist) ? 1 : 0; always @* acl_oh_allowlist <= 32'h8312; assign addr_auth = (address == 32'hF00) ? 1: 0; always @ (posedge clk or negedge rst_n) if (!rst_n) begin q <= 32'h0; data_out <= 32'h0; end else begin q <= (addr_auth & write_auth) ? data_in: q; data_out <= q; end end endmodule
Informative · Verilog
assign addr_auth = (address == 32'hF00) ? 1: 0;
Bad · Verilog
CVE ID 标题 CVSS 风险等级 Published
CVE-2026-74001 WordPress 用户注册与会员专业版 <=5.4.5 账户接管漏洞 — User Registration & Membership Pro 9.8 Critical 2026-08-20
CVE-2026-66677 WordPress Leyka 插件 <= 3.32.3 认证漏洞 — Leyka 7.6 High 2026-08-20
CVE-2026-24185 NVIDIA NVOS SSH越权访问漏洞 — NVOS 7.1 High 2026-08-18
CVE-2026-71879 Integrated Publishing Toolkit 身份验证绕过漏洞 — Integrated Publishing Toolkit 9.1 Critical 2026-08-18
CVE-2026-73399 WordPress Flutterwave WooCommerce插件<=3.3.0身份验证错误漏洞 — Flutterwave WooCommerce 6.5 Medium 2026-08-18
CVE-2026-73398 WordPress Piraeus Bank WooCommerce支付网关插件3.2.0认证破坏漏洞 — Piraeus Bank WooCommerce Payment Gateway 6.5 Medium 2026-08-18
CVE-2026-73396 WordPress MWB HubSpot for WooCommerce <= 1.6.7 认证绕过漏洞 — MWB HubSpot for WooCommerce 7.1 High 2026-08-18
CVE-2026-73381 supsystic Popup by Supsystic 授权问题漏洞 — Popup by Supsystic 9.1 Critical 2026-08-18
CVE-2026-73379 supsystic Contact Form by Supsystic 授权问题漏洞 — Contact Form by Supsystic 6.5 Medium 2026-08-18
CVE-2026-32481 WordPress Ezoic插件<=2.22.11 身份验证漏洞 — Ezoic 7.5 High 2026-08-18
CVE-2026-75627 Loophole Bastillion 授权问题漏洞 — Bastillion 9.8 Critical 2026-08-18
CVE-2026-75045 JetBrains YouTrack 授权问题漏洞 — YouTrack 9.1 Critical 2026-08-17
CVE-2026-66465 WordPress Cartify 授权问题漏洞 — Cartify 9.8 Critical 2026-08-13
CVE-2026-66453 Dimitri Grassi Salon booking system 授权问题漏洞 — Salon booking system 9.8 Critical 2026-08-13
CVE-2026-70468 Fortinet fortimanager 授权问题漏洞 — FortiManager 7.3 High 2026-08-12
CVE-2026-18636 Rapid7 velociraptor 授权问题漏洞 — Velociraptor 6.8 Medium 2026-08-11
CVE-2026-72691 OpenSignLabs OpenSign 授权问题漏洞 — opensignserver 7.5 High 2026-08-10
CVE-2026-66451 WordPress Eventin – Event Calendar, Tickets, Registration, Booking & WooCommerce 授权问题漏洞 — WP Event SOlution 6.5 Medium 2026-08-06
CVE-2026-66425 WordPress Gutena Forms 授权问题漏洞 — Gutena Forms – Contact Form, Survey Form, Feedback Form, Booking Form, and Custom Form Builder 6.5 Medium 2026-08-06
CVE-2026-65542 WordPress Super Socializer 授权问题漏洞 — Super Socializer 8.8 High 2026-08-06
CVE-2026-24254 NVIDIA Dynamo 授权问题漏洞 — Dynamo 9.8 Critical 2026-08-04
CVE-2026-58073 Veeam Service Provider Console 授权问题漏洞 — Service Provider Console 9.5 Critical 2026-08-04
CVE-2026-68584 SiYuan 授权问题漏洞 — siyuan 8.6 High 2026-08-03
CVE-2026-18574 Check Point Security Management Server 授权问题漏洞 — Security Management Server 9.3 Critical 2026-08-03
CVE-2026-33591 Tranquil Wapt 授权问题漏洞 — WAPT Server 10.0 Critical 2026-08-03
CVE-2026-18577 N-able n-central 授权问题漏洞 — N-central 8.2 High 2026-08-02
CVE-2026-18556 N-able N-central 授权问题漏洞 — N-central 8.2 High 2026-08-01
CVE-2026-67337 better-auth 授权问题漏洞 — better-auth 6.5 Medium 2026-08-01
CVE-2026-8338 Black Duck Coverity Connect 授权问题漏洞 — Coverity Connect 9.2 Critical 2026-07-29
CVE-2026-12703 TeamViewer Remote Full Client 授权问题漏洞 — Remote 8.0 High 2026-07-29

CWE-288(使用候选路径或通道进行的认证绕过) 是常见的弱点类别,本平台收录该类弱点关联的 546 条 CVE 漏洞。