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

目标: 1000 元 · 已筹: 1336

100%

CWE-290 使用欺骗进行的认证绕过 类漏洞列表 315

CWE-290 使用欺骗进行的认证绕过 类弱点 315 条 CVE 漏洞汇总,含 AI 中文分析。

CWE-290 是一种身份验证绕过漏洞,源于身份验证机制实现不当,易受欺骗攻击。攻击者通常通过伪造或篡改身份标识(如IP地址、证书或令牌),使系统误认其为合法用户从而获取未授权访问权限。开发者应实施强身份验证策略,包括多因素认证、严格的输入验证及防重放机制,并定期审查认证逻辑,确保身份源的可信性与完整性,以有效防御此类欺骗行为。

MITRE CWE 官方描述
CWE:CWE-290 通过欺骗绕过身份验证 (Authentication Bypass by Spoofing) 英文:这种以攻击为导向的弱点是由错误实现的身份验证方案引起的,这些方案容易受到欺骗攻击 (spoofing attacks)。
常见影响 (1)
Access ControlBypass Protection Mechanism, Gain Privileges or Assume Identity
This weakness can allow an attacker to access resources which are not otherwise accessible without proper authentication.
代码示例 (2)
The following code authenticates users.
String sourceIP = request.getRemoteAddr(); if (sourceIP != null && sourceIP.equals(APPROVED_IP)) { authenticated = true; }
Bad · Java
Both of these examples check if a request is from a trusted address before responding to the request.
sd = socket(AF_INET, SOCK_DGRAM, 0); serv.sin_family = AF_INET; serv.sin_addr.s_addr = htonl(INADDR_ANY); servr.sin_port = htons(1008); bind(sd, (struct sockaddr *) & serv, sizeof(serv)); while (1) { memset(msg, 0x0, MAX_MSG); clilen = sizeof(cli); if (inet_ntoa(cli.sin_addr)==getTrustedAddress()) { n = recvfrom(sd, msg, MAX_MSG, 0, (struct sockaddr *) & cli, &clilen); } }
Bad · C
while(true) { DatagramPacket rp=new DatagramPacket(rData,rData.length); outSock.receive(rp); String in = new String(p.getData(),0, rp.getLength()); InetAddress clientIPAddress = rp.getAddress(); int port = rp.getPort(); if (isTrustedAddress(clientIPAddress) & secretKey.equals(in)) { out = secret.getBytes(); DatagramPacket sp =new DatagramPacket(out,out.length, IPAddress, port); outSock.send(sp); } }
Bad · Java
CVE ID标题CVSS风险等级Published
CVE-2026-58370 Woodpecker 授权问题漏洞 — woodpecker 8.1 High2026-06-30
CVE-2026-7656 Zephyr 授权问题漏洞 — zephyr 8.1 High2026-06-29
CVE-2026-25119 Gogs 授权问题漏洞 — gogs--2026-06-24
CVE-2026-47381 NocoDB 授权问题漏洞 — nocodb--2026-06-23
CVE-2026-54308 n8n-io n8n 授权问题漏洞 — n8n--2026-06-23
CVE-2026-56357 n8n 授权问题漏洞 — n8n 4.0 Medium2026-06-22
CVE-2026-49468 Berri AI LiteLLM 授权问题漏洞 — litellm--2026-06-22
CVE-2026-49231 Apache APISIX 授权问题漏洞 — Apache APISIX--2026-06-19
CVE-2026-39999 Apache APISIX 授权问题漏洞 — Apache APISIX--2026-06-19
CVE-2026-56020 Webmin 授权问题漏洞 — Webmin 8.1 High2026-06-18
CVE-2026-50141 Woodpecker CI Woodpecker 授权问题漏洞 — woodpecker--2026-06-18
CVE-2026-55202 tinyproxy 授权问题漏洞 — tinyproxy 8.2 High2026-06-17
CVE-2026-53857 OpenClaw 授权问题漏洞 — OpenClaw 8.1 High2026-06-16
CVE-2026-53849 OpenClaw 授权问题漏洞 — OpenClaw 8.1 High2026-06-16
CVE-2026-42662 Liquid Web / StellarWP Event Tickets 授权问题漏洞 — Event Tickets 6.5 Medium2026-06-15
CVE-2026-27089 Magepeople inc WpTravelly 授权问题漏洞 — WpTravelly 7.5 High2026-06-15
CVE-2026-49757 team-alembic ash authentication 授权问题漏洞 — ash_authentication--2026-06-15
CVE-2026-34025 Wertheim SafeController Software for VAULT ROOMS 授权问题漏洞 — Wertheim SafeController Software for VAULT ROOMS (Safe Deposit Locker System)--2026-06-15
CVE-2026-53833 OpenClaw 授权问题漏洞 — OpenClaw 7.7 High2026-06-12
CVE-2026-53832 OpenClaw 授权问题漏洞 — OpenClaw 7.7 High2026-06-12
CVE-2026-53823 OpenClaw 授权问题漏洞 — OpenClaw 8.1 High2026-06-12
CVE-2026-5792 Hedef Media Promotion Interactive Media Marketing Related Marketing Cloud 授权问题漏洞 — Related Marketing Cloud (RMC) 6.5 Medium2026-06-12
CVE-2026-53817 OpenClaw 安全漏洞 — OpenClaw 8.8 High2026-06-11
CVE-2026-53811 OpenClaw 安全漏洞 — OpenClaw 8.8 High2026-06-11
CVE-2026-6090 Lenovo Smart Connect 安全漏洞 — Smart Connect 7.0 High2026-06-10
CVE-2026-48567 Microsoft Azure HorizonDB 安全漏洞 — Azure HorizonDB 10.0 Critical2026-06-04
CVE-2026-8644 IBM WebSphere Application Server(WAS) 安全漏洞 — WebSphere Application Server 9.1 Critical2026-06-01
CVE-2026-42674 WordPress plugin Advanced Access Manager 安全漏洞 — Advanced Access Manager 7.5 High2026-06-01
CVE-2026-47123 FreeScout 数据伪造问题漏洞 — freescout 7.5 High2026-05-29
CVE-2026-44649 SillyTavern 安全漏洞 — SillyTavern 9.8 Critical2026-05-29

CWE-290(使用欺骗进行的认证绕过) 是常见的弱点类别,本平台收录该类弱点关联的 315 条 CVE 漏洞。