Goal Reached Thanks to every supporter — we hit 100%!

Goal: 1000 CNY · Raised: 1336 CNY

100%

CWE-620 (未经验证的口令修改) — Vulnerability Class 78

78 vulnerabilities classified as CWE-620 (未经验证的口令修改). AI Chinese analysis included.

CWE-620 represents a critical authentication weakness where software allows password modifications without verifying the user’s current identity. This flaw typically arises when applications accept new credentials based solely on a username or session token, bypassing the requirement for the original password or multi-factor authentication. Attackers exploit this vulnerability by intercepting valid user sessions or manipulating requests to reset passwords for other accounts, thereby gaining unauthorized access to sensitive data and elevated privileges. To mitigate this risk, developers must enforce strict verification protocols during password changes. This includes requiring the current password, implementing time-limited reset tokens sent via secure channels, and validating session integrity. By ensuring that only the legitimate account holder can authorize changes, organizations effectively prevent account takeover attacks and maintain robust user authentication standards.

MITRE CWE Description
When setting a new password for a user, the product does not require knowledge of the original password, or using another form of authentication. This could be used by an attacker to change passwords for another user, thus gaining the privileges associated with that user.
Common Consequences (1)
Access Control Bypass Protection Mechanism, Gain Privileges or Assume Identity
Mitigations (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.
Examples (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 Title CVSS Severity Published
CVE-2025-47938 TYPO3 Vulnerable to Unverified Password Change for Backend Users — typo3 3.8 Low 2025-05-20
CVE-2025-4322 Motors <= 5.6.67 - Unauthenticated Privilege Escalation via Password Update/Account Takeover — Motors - Car Dealer, Rental & Listing WordPress theme 9.8 Critical 2025-05-20
CVE-2025-4903 D-Link DI-7003GV2 webgl.asp sub_41F4F0 unverified password change — DI-7003GV2 5.3 Medium 2025-05-19
CVE-2025-46748 Unverified Password Change — SEL Blueframe OS 2.7 Low 2025-05-12
CVE-2025-4558 WormHole Tech GPM - Unverified Password Change — GPM 9.8 Critical 2025-05-12
CVE-2025-4552 ContiNew Admin password unverified password change — ContiNew Admin 5.4 Medium 2025-05-11
CVE-2025-2253 IMITHEMES Listing <= 3.3 - Unauthenticated Privilege Escalation via Unverified Password Reset — IMITHEMES Listing 9.8 Critical 2025-05-09
CVE-2024-47784 Unverified Password Change — ANC 2.6 Low 2025-04-30
CVE-2025-3603 Flynax Bridge <= 2.2.0 - Unauthenticated Privilege Escalation via Password Update — Flynax Bridge 9.8 Critical 2025-04-24
CVE-2025-3793 Buddypress Force Password Change <= 0.1 - Authenticated (Subscriber+) Account Takeover via Password Update — Buddypress Force Password Change 4.2 Medium 2025-04-24
CVE-2025-3607 Frontend Login and Registration Blocks <= 1.0.8 - Authenticated (Subscriber+) Privilege Escalation via Password Reset — Login, Registration and Lost Password Blocks 8.8 High 2025-04-24
CVE-2025-3849 YXJ2018 SpringBoot-Vue-OnlineExam studentPWD unverified password change — SpringBoot-Vue-OnlineExam 4.3 Medium 2025-04-21
CVE-2024-48887 Fortinet FortiSwitch 安全漏洞 — FortiSwitch 9.3 Critical 2025-04-08
CVE-2024-41796 Siemens SENTRON 7KT PAC1260 Data Manager 安全漏洞 — SENTRON 7KT PAC1260 Data Manager 6.5 Medium 2025-04-08
CVE-2024-9431 Improper Privilege Management in transformeroptimus/superagi — transformeroptimus/superagi 8.8 - 2025-03-20
CVE-2024-13373 Exertio Framework <= 1.3.1 - Unauthenticated Arbitrary User Password Update — Exertio Framework 8.1 High 2025-03-01
CVE-2024-12824 Nokri – Job Board WordPress Theme <= 1.6.2 - Unauthenticated Arbitrary Password Change — Nokri – Job Board WordPress Theme 9.8 Critical 2025-03-01
CVE-2024-12860 CarSpot – Dealership Wordpress Classified Theme <= 2.4.3 - Unauthenticated Arbitrary Password Reset/Account Takeover — CarSpot – Dealership Wordpress Classified Theme 9.8 Critical 2025-02-18
CVE-2025-1107 Unverified password change vulnerability in Janto — Janto 9.9 Critical 2025-02-07
CVE-2024-45647 IBM Security Verify Access unverified password change — Security Verify Access 5.6 Medium 2025-01-20
CVE-2024-13375 Adifier System <= 3.1.7 - Unauthenticated Arbitrary Password Reset — Adifier System 9.8 Critical 2025-01-18
CVE-2024-28143 Insecure Password Change Function — Scan2Net 9.8 - 2024-12-12
CVE-2024-51493 API key access in settings without reauthentication in OctoPrint — OctoPrint 5.3 Medium 2024-11-05
CVE-2024-33699 LevelOne WBR-6012 安全漏洞 — WBR-6012 9.9 Critical 2024-10-30
CVE-2024-8794 BA Book Everything <= 1.6.20 - Unauthenticated Arbitrary User Password Reset — BA Book Everything 5.3 Medium 2024-09-24
CVE-2024-21757 Fortinet FortiManager和Fortinet FortiAnalyzer 安全漏洞 — FortiManager 5.5 Medium 2024-08-13
CVE-2024-37998 Siemens CPCI85 Central Processing和SICORE Base system 安全漏洞 — CPCI85 Central Processing/Communication 9.8 Critical 2024-07-22
CVE-2024-20419 Cisco Smart Software Manager On-Prem 安全漏洞 — Cisco Smart Software Manager On-Prem 10.0 Critical 2024-07-17
CVE-2024-2213 Improper Authentication in zenml-io/zenml — zenml-io/zenml 8.8AI High AI 2024-06-06
CVE-2023-4465 Poly VVX 601 Configuration File Import unverified password change — Trio 8300 2.7 Low 2023-12-29

Vulnerabilities classified as CWE-620 (未经验证的口令修改) represent 78 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.