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

目标: 1000 元 · 已筹: 1336

100%

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

CWE-288 使用候选路径或通道进行的认证绕过 类弱点 548 条 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-2024-10438 Sunnet eHRD 安全漏洞 — eHRD CTMS 7.5 High 2024-10-28
CVE-2024-9501 WordPress plugin Wp Social Login and Register Social Counter 安全漏洞 — Wp Social Login and Register Social Counter 9.8 Critical 2024-10-26
CVE-2024-9930 WordPress plugin Extensions by HocWP Team 安全漏洞 — Extensions by HocWP Team 9.8 Critical 2024-10-26
CVE-2024-9890 WordPress plugin User Toolkit 安全漏洞 — User Toolkit 8.8 High 2024-10-26
CVE-2024-9933 WordPress plugin WatchTowerHQ 安全漏洞 — WatchTowerHQ 9.8 Critical 2024-10-26
CVE-2024-9931 WordPress plugin Wux Blog Editor 安全漏洞 — Wux Blog Editor 9.8 Critical 2024-10-26
CVE-2024-10381 Matrix Door Controller Cosec Vega FAXQ 安全漏洞 — Matrix Door Controller Cosec Vega FAXQ 9.8 - 2024-10-25
CVE-2024-47406 Sharp MFP 安全漏洞 — Sharp Digital Full-color MFPs and Monochrome MFPs 9.1 Critical 2024-10-25
CVE-2024-9488 WordPress plugin Comments – wpDiscuz 安全漏洞 — Comments – wpDiscuz 9.8 Critical 2024-10-25
CVE-2024-49675 WordPress plugin iBryl Switch User 安全漏洞 — iBryl Switch User 8.8 High 2024-10-23
CVE-2024-10002 WordPress plugin Rover IDX 安全漏洞 — Rover IDX 8.8 High 2024-10-22
CVE-2024-49328 WordPress plugin WP REST API FNS 安全漏洞 — WP REST API FNS 9.8 Critical 2024-10-20
CVE-2024-49604 WordPress plugin Simple User Registration 安全漏洞 — Simple User Registration 9.8 Critical 2024-10-20
CVE-2024-9861 WordPress plugin Miniorange OTP Verification with Firebase 安全漏洞 — Miniorange OTP Verification with Firebase 8.1 High 2024-10-17
CVE-2024-9893 WordPress plugin Nextend Social Login Pro 安全漏洞 — Nextend Social Login Pro 9.8 Critical 2024-10-16
CVE-2024-49247 WordPress plugin BuddyPress Better Registration 安全漏洞 — BuddyPress Better Registration 9.8 Critical 2024-10-16
CVE-2024-9105 WordPress plugin UltimateAI 安全漏洞 — Ultimate AI 9.8 Critical 2024-10-16
CVE-2024-9822 WordPress plugin Pedalo Connector 安全漏洞 — Pedalo Connector 9.8 Critical 2024-10-11
CVE-2024-9522 WordPress plugin WP Users Masquerade 安全漏洞 — WP Users Masquerade 8.8 High 2024-10-10
CVE-2024-46887 Siemens SIMATIC S7-1500 CPU 安全漏洞 — SIMATIC Drive Controller CPU 1504D TF 5.3 Medium 2024-10-08
CVE-2024-8943 WordPress plugin LatePoint 安全漏洞 — LatePoint Plugin 9.8 Critical 2024-10-08
CVE-2024-9289 WordPress plugin WordPress & WooCommerce Affiliate Program 访问控制错误漏洞 — WordPress & WooCommerce Affiliate Program 9.8 Critical 2024-10-01
CVE-2024-9106 WordPress plugin Wechat Social login 安全漏洞 — Wechat Social login 微信QQ钉钉登录插件 9.8 Critical 2024-10-01
CVE-2024-7781 WordPress plugin Jupiter X Core 安全漏洞 — Jupiter X Core 8.1 High 2024-09-26
CVE-2024-43692 Dover Fueling Solutions ProGauge MAGLINK LX CONSOLE 安全漏洞 — ProGauge MAGLINK LX CONSOLE 9.8 Critical 2024-09-24
CVE-2024-8277 WordPress plugin WooCommerce Photo Reviews Premium 安全漏洞 — WooCommerce Photo Reviews Premium 9.8 Critical 2024-09-11
CVE-2024-8012 Ivanti Workspace Control 安全漏洞 — Workspace Control 7.8 High 2024-09-10
CVE-2024-41173 Beckhoff TwinCAT/BSD 安全漏洞 — IPC Diagnostics package 7.8 High 2024-08-27
CVE-2024-7125 Hitachi Ops Center Common Services 安全漏洞 — Hitachi Ops Center Common Services 7.8 High 2024-08-27
CVE-2024-35151 IBM OpenPages with Watson 安全漏洞 — OpenPages with Watson 6.5 Medium 2024-08-22

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