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

Goal: 1000 CNY · Raised: 1336 CNY

100%

CWE-522 (不充分的凭证保护机制) — Vulnerability Class 422

422 vulnerabilities classified as CWE-522 (不充分的凭证保护机制). AI Chinese analysis included.

CWE-522 represents a critical security weakness where authentication credentials are transmitted or stored using insecure methods, leaving them vulnerable to unauthorized interception or retrieval. Attackers typically exploit this flaw by employing network sniffing tools to capture unencrypted data in transit or by accessing poorly secured local storage to extract plaintext passwords. This exposure allows malicious actors to gain unauthorized access to user accounts, bypassing intended security controls and compromising system integrity. To prevent such vulnerabilities, developers must implement robust cryptographic standards, ensuring that all credentials are encrypted both during transmission via protocols like TLS and while at rest using strong hashing algorithms. Additionally, adhering to the principle of least privilege and regularly auditing authentication mechanisms helps mitigate the risk of credential theft, ensuring that sensitive data remains protected against common interception techniques.

MITRE CWE Description
The product transmits or stores authentication credentials, but it uses an insecure method that is susceptible to unauthorized interception and/or retrieval.
Common Consequences (1)
Access ControlGain Privileges or Assume Identity
An attacker could gain access to user accounts and access sensitive data used by the user accounts.
Mitigations (3)
Architecture and DesignUse an appropriate security mechanism to protect the credentials.
Architecture and DesignMake appropriate use of cryptography to protect the credentials.
ImplementationUse industry standards to protect the credentials (e.g. LDAP, keystore, etc.).
Examples (2)
This code changes a user's password.
$user = $_GET['user']; $pass = $_GET['pass']; $checkpass = $_GET['checkpass']; if ($pass == $checkpass) { SetUserPassword($user, $pass); }
Bad · PHP
The following code reads a password from a properties file and uses the password to connect to a database.
... Properties prop = new Properties(); prop.load(new FileInputStream("config.properties")); String password = prop.getProperty("password"); DriverManager.getConnection(url, usr, password); ...
Bad · Java
CVE IDTitleCVSSSeverityPublished
CVE-2025-15621 Sparx Enterprise Architect Client does not verify the receiver of OAuth2 credentials during OpenID authentication — Sparx Enterprise Architect 8.8AIHighAI2026-04-16
CVE-2026-32171 Azure Logic Apps Elevation of Privilege Vulnerability — Azure Logic Apps 8.8 High2026-04-14
CVE-2026-27316 Fortinet FortiSandbox 安全漏洞 — FortiSandbox 2.5 Low2026-04-14
CVE-2026-34262 Information Disclosure Vulnerability in SAP HANA Cockpit and HANA Database Explorer — SAP HANA Cockpit and HANA Database Explorer 5.0 Medium2026-04-14
CVE-2026-35467 Private Key stored as extractable in browser IndexeDB — cveClient/encrypt-storage.js 7.5AIHighAI2026-04-02
CVE-2026-33575 OpenClaw < 2026.3.12 - Long-lived Credential Exposure in Pairing Setup Codes — OpenClaw 7.5 High2026-03-29
CVE-2025-15617 Wazuh GitHub Actions Workflow Exposure of Sensitive Credentials — Wazuh (GitHub Actions) 6.5 Medium2026-03-27
CVE-2025-13478 Cache Misconfiguration Leading to Cross-User Data Exposure — Identity Manager 3.1 -2026-03-27
CVE-2025-36440 Multiple Vulnerabilities in IBM Concert Software — Concert 5.1 Medium2026-03-25
CVE-2025-14790 IBM InfoSphere Information Server is vulnerable to disclosure of sensitive information — InfoSphere Information Server 6.5 Medium2026-03-25
CVE-2025-64998 Session hijacking via exposed session signing secret in distributed Checkmk setups — Checkmk 6.5 -2026-03-24
CVE-2026-32913 OpenClaw < 2026.3.7 - Custom Authorization Header Leakage via Cross-Origin Redirects — OpenClaw 9.3 Critical2026-03-23
CVE-2026-31926 IGL-Technologies eParking.fi Insufficiently Protected Credentials — eParking.fi 6.5 Medium2026-03-20
CVE-2026-28204 CTEK Chargeportal Insufficiently Protected Credentials — Chargeportal 6.5 Medium2026-03-20
CVE-2026-23658 Azure DevOps: msazure Elevation of Privilege Vulnerability — Azure DevOps: msazure 8.6 High2026-03-19
CVE-2026-32606 IncusOS has a LUKS encryption bypass due to insufficient TPM policy — incus-os 7.7 High2026-03-18
CVE-2026-27027 Everon api.everon.io Insufficiently Protected Credentials — api.everon.io 6.5 Medium2026-03-06
CVE-2026-27777 Mobiliti e-mobi.hu Insufficiently Protected Credentials — e-mobi.hu 6.5 Medium2026-03-06
CVE-2026-28714 Acronis Cyber Protect 安全漏洞 — Acronis Cyber Protect 17 7.5 -2026-03-05
CVE-2026-27770 ePower epower.ie Insufficiently Protected Credentials — epower.ie 6.5 Medium2026-03-05
CVE-2026-30796 RustDesk Client Transmits Preset Address Book Password Verbatim in Heartbeat Sync — RustDesk Client 6.2 -2026-03-05
CVE-2026-29128 IDC SFX2100 Satellite Receiver bgpd/ospfd/ripd/zebra Config Credential Disclosure via World-Readable Files — SFX2100 Satellite Receiver 9.8 -2026-03-05
CVE-2026-0689 XIQ‑SE NAC Admin Credential Exposure via HTTP Response — ExtremeCloud IQ - Site Engine 4.9AIMediumAI2026-03-02
CVE-2026-20435 MediaTek Chipsets 安全漏洞 — MediaTek chipset 4.2AIMediumAI2026-03-02
CVE-2026-22878 Mobility46 mobility46.se Insufficiently Protected Credentials — mobility46.se 6.5 Medium2026-02-27
CVE-2026-25774 EV Energy ev.energy Insufficiently Protected Credentials — ev.energy 6.5 Medium2026-02-27
CVE-2026-27773 SWITCH EV swtchenergy.com Insufficiently Protected Credentials — swtchenergy.com 6.5 Medium2026-02-27
CVE-2026-22890 EV2GO ev2go.io Insufficiently Protected Credentials — ev2go.io 6.5 Medium2026-02-26
CVE-2026-20733 CloudCharge cloudcharge.se Insufficiently Protected Credentials — cloudcharge.se 6.5 Medium2026-02-26
CVE-2026-20791 Chargemap chargemap.com Insufficiently Protected Credentials — chargemap.com 6.5 Medium2026-02-26

Vulnerabilities classified as CWE-522 (不充分的凭证保护机制) represent 422 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.