CWE-287 认证机制不恰当 类弱点 1494 条 CVE 漏洞汇总,含 AI 中文分析。
CWE-287 属于身份验证缺陷漏洞,指系统在验证用户身份时未能充分核实其声明的真实性。攻击者常利用此弱点通过暴力破解、凭证填充或会话劫持等手段冒充合法用户,从而获取未授权访问权限。开发者应实施多因素认证、使用强哈希算法存储凭证、设置合理的账户锁定策略,并严格验证每次访问的身份凭证,以确保身份声明得到充分证明。
my $q = new CGI; if ($q->cookie('loggedin') ne "true") { if (! AuthenticateUser($q->param('username'), $q->param('password'))) { ExitError("Error: you need to log in first"); } else { # Set loggedin and user cookies. $q->cookie( -name => 'loggedin', -value => 'true' ); $q->cookie( -name => 'user', -value => $q->param('username') ); } } if ($q->cookie('user') eq "Administrator") { DoAdministratorTasks(); }
GET /cgi-bin/vulnerable.cgi HTTP/1.1 Cookie: user=Administrator Cookie: loggedin=true [body of request]
| CVE ID | 标题 | CVSS | 风险等级 | Published |
|---|---|---|---|---|
| CVE-2026-48929 | Rocket.Chat 授权问题漏洞 — Rocket.Chat | - | - | 2026-06-16 |
| CVE-2026-48780 | Forem 授权问题漏洞 — forem | 8.2 | High | 2026-06-16 |
| CVE-2026-12183 | Nefteprodukttekhnika BUK TS-G Gas Station Automation System 授权问题漏洞 — BUK TS-G Gas Station Automation System | 9.8 | Critical | 2026-06-13 |
| CVE-2026-50623 | Apache CXF 授权问题漏洞 — Apache CXF | - | - | 2026-06-12 |
| CVE-2026-48611 | phpBB 授权问题漏洞 — phpBB | - | - | 2026-06-12 |
| CVE-2026-40995 | VMware Spring Web Services 授权问题漏洞 — Spring Web Services | 5.4 | Medium | 2026-06-11 |
| CVE-2026-46705 | Russh 授权问题漏洞 — russh | 5.3 | Medium | 2026-06-10 |
| CVE-2026-45567 | Roxy-WI 授权问题漏洞 — roxy-wi | 8.3 | High | 2026-06-10 |
| CVE-2026-47838 | Spring Security 授权问题漏洞 — Spring Security | 6.8 | Medium | 2026-06-09 |
| CVE-2026-44810 | Microsoft Windows Cryptographic Services 授权问题漏洞 — Windows 11 version 23H2 | 8.4 | High | 2026-06-09 |
| CVE-2026-49848 | FreeSWITCH 授权问题漏洞 — freeswitch | 4.3 | Medium | 2026-06-09 |
| CVE-2026-49843 | FreeSWITCH 授权问题漏洞 — freeswitch | 5.3 | Medium | 2026-06-09 |
| CVE-2026-41720 | VMware Spring LDAP 授权问题漏洞 — Spring LDAP | 7.4 | High | 2026-06-09 |
| CVE-2026-11618 | Taier 授权问题漏洞 — Taier | 7.3 | High | 2026-06-09 |
| CVE-2026-50751 | Check Point Quantum Security Gateway 授权问题漏洞 — Quantum Security Gateway | - | - | 2026-06-08 |
| CVE-2026-34123 | TP-Link Tapo C520WS 安全漏洞 — Tapo C520WS v2 | - | - | 2026-06-05 |
| CVE-2026-46389 | UDS Identity Config 安全漏洞 — uds-identity-config | 10.0 | Critical | 2026-06-05 |
| CVE-2026-11345 | Linqi 安全漏洞 — linqi | - | - | 2026-06-05 |
| CVE-2026-6274 | Redline WR3200 安全漏洞 — Redline WR3200 | 9.8 | Critical | 2026-06-05 |
| CVE-2023-5502 | Arista EOS 安全漏洞 — EOS | 5.9 | Medium | 2026-06-04 |
| CVE-2026-49202 | Acer M6E 安全漏洞 — Connect M6E 5G Portable WiFi Router | - | - | 2026-06-04 |
| CVE-2026-49203 | Acer M6E 安全漏洞 — Connect M6E 5G Portable WiFi Router | - | - | 2026-06-04 |
| CVE-2026-49194 | Acer M6E 安全漏洞 — Connect M6E 5G Portable WiFi Router | - | - | 2026-06-04 |
| CVE-2026-49191 | Acer M6E 安全漏洞 — Connect M6E 5G Portable WiFi Router | - | - | 2026-06-04 |
| CVE-2026-49186 | Acer M6E 安全漏洞 — Connect M6E 5G Portable WiFi Router | - | - | 2026-06-04 |
| CVE-2026-10777 | Student-Management-System 授权问题漏洞 — Student-Management-System | 7.3 | High | 2026-06-03 |
| CVE-2026-45289 | Protocol 授权问题漏洞 — Protocol | 5.3 | Medium | 2026-06-02 |
| CVE-2026-49448 | authentik 授权问题漏洞 — authentik | 9.8 | Critical | 2026-06-02 |
| CVE-2026-49443 | authentik 授权问题漏洞 — authentik | 8.8 | High | 2026-06-02 |
| CVE-2026-10619 | Student-Management-System 授权问题漏洞 — student-management-system | 7.3 | High | 2026-06-02 |
CWE-287(认证机制不恰当) 是常见的弱点类别,本平台收录该类弱点关联的 1494 条 CVE 漏洞。