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

目标: 1000 元 · 已筹: 1336

100%

CWE-620 未经验证的口令修改 类漏洞列表 85

CWE-620 未经验证的口令修改 类弱点 85 条 CVE 漏洞汇总,含 AI 中文分析。

CWE-620 属于身份验证缺陷,指系统在修改用户密码时未验证原始密码或实施其他身份确认机制。攻击者可利用此漏洞,在无需知晓原密码的情况下篡改他人账户凭证,从而非法获取目标用户的系统权限与敏感数据。开发者应强制要求用户在更改密码前提供旧密码或完成多因素认证,确保操作者确为账户合法持有者,以阻断未授权访问风险。

MITRE CWE 官方描述
CWE:CWE-620 Unverified Password Change(未经验证的密码更改) 英文:在为某用户设置新密码时,该产品未要求提供原始密码的知识,或未使用其他形式的身份验证。 攻击者可能利用此漏洞更改其他用户的密码,从而获得与该用户关联的权限。
常见影响 (1)
Access Control Bypass Protection Mechanism, Gain Privileges or Assume Identity
缓解措施 (2)
Architecture and Design When prompting for a password change, force the user to provide the original password in addition to the new password.
Architecture and Design Do not use "forgotten password" functionality. But if you must, ensure that you are only providing information to the actual user, e.g. by using an email address or challenge question that the legitimate user already provided in the past; do not allow the current user to change this identity information until the correct password has been provided.
代码示例 (1)
This code changes a user's password.
$user = $_GET['user']; $pass = $_GET['pass']; $checkpass = $_GET['checkpass']; if ($pass == $checkpass) { SetUserPassword($user, $pass); }
Bad · PHP
CVE ID 标题 CVSS 风险等级 Published
CVE-2026-92467 microservices-platform 6.0.0 未验证密码修改漏洞 — microservices-platform 8.3 High 2026-09-16
CVE-2026-91995 Pig 4.1.0 之前 未验证密码修改漏洞 — pig 9.1 Critical 2026-09-15
CVE-2026-46623 OpenAM OAuth2模块密码修改未验证账户接管漏洞 — OpenAM 7.4 High 2026-09-15
CVE-2026-54175 Backpack for Laravel Backpack 授权问题漏洞 — CRUD 7.6 High 2026-09-14
CVE-2026-86260 Xiaohao.Shi hosporder 授权问题漏洞 — hosp_order 6.5 Medium 2026-09-07
CVE-2026-85591 phpMyFAQ 授权问题漏洞 — phpMyFAQ 7.1 High 2026-09-04
CVE-2026-17599 Sonatype Nexus Repository 授权问题漏洞 — Nexus Repository 3 6.9 Medium 2026-08-07
CVE-2026-15964 WordPress Single Sign On For TNG 授权问题漏洞 — Single Sign On For TNG 9.8 Critical 2026-08-01
CVE-2026-12692 Vimesoft Enterprise Video Platform 授权问题漏洞 — Enterprise Video Platform 9.8 Critical 2026-07-17
CVE-2026-56305 Capgo 授权问题漏洞 — Capgo 8.3 High 2026-07-10
CVE-2026-54801 Siemens CPCI85 Central Processing/Communication 授权问题漏洞 — CPCI85 Central Processing/Communication 7.2 High 2026-07-09
CVE-2026-44733 OPF OpenProject 授权问题漏洞 — openproject 5.9 Medium 2026-06-26
CVE-2025-71328 FlowiseAI Flowise 授权问题漏洞 — Flowise 8.3 High 2026-06-25
CVE-2025-71337 flowise 授权问题漏洞 — Flowise 8.3 High 2026-06-23
CVE-2026-5386 KMW CCTV Security Cameras 安全漏洞 — KM-IP521 9.1 Critical 2026-05-29
CVE-2026-9249 Devolutions Server 安全漏洞 — Server - - 2026-05-22
CVE-2026-42084 OpenC3 COSMOS 安全漏洞 — cosmos 8.1 High 2026-05-04
CVE-2026-40588 blueprintUE self-hosted edition 安全漏洞 — blueprintue-self-hosted-edition 8.1 High 2026-04-21
CVE-2019-25653 Navicat 安全漏洞 — Navicat for Oracle 6.2 Medium 2026-03-30
CVE-2025-70082 Lantronix EDS3000PS 安全漏洞 — EDS3000PS series 2.7 Low 2026-03-11
CVE-2026-27757 SODOLA SL902-SWTGW124AS 安全漏洞 — SODOLA SL902-SWTGW124AS 7.1 High 2026-02-27
CVE-2026-24443 NETIKUS EventSentry 安全漏洞 — EventSentry 8.8 - 2026-02-24
CVE-2026-2543 vichan 授权问题漏洞 — vichan 2.7 Low 2026-02-16
CVE-2026-24440 Tenda W30E 安全漏洞 — W30E V2 9.1AI Critical AI 2026-01-26
CVE-2025-14751 Weintek cMT X Series 安全漏洞 — cMT3072XH 8.8AI High AI 2026-01-22
CVE-2025-11235 Progress MOVEit Transfer 安全漏洞 — MOVEit Transfer 3.7 Low 2026-01-06
CVE-2025-13148 IBM Aspera Orchestrator 安全漏洞 — Aspera Orchestrator 8.1 High 2025-12-11
CVE-2025-67719 Ibexa User Bundle 安全漏洞 — user 9.8AI Critical AI 2025-12-11
CVE-2025-59808 Fortinet FortiSOAR PaaS和Fortinet FortiSOAR on-premise 安全漏洞 — FortiSOAR on-premise 6.5 Medium 2025-12-09
CVE-2025-62425 Matrix Authentication Service 安全漏洞 — matrix-authentication-service 8.3 High 2025-10-16

CWE-620(未经验证的口令修改) 是常见的弱点类别,本平台收录该类弱点关联的 85 条 CVE 漏洞。