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

Goal: 1000 CNY · Raised: 1000 CNY

100.0%

CWE-532 (通过日志文件的信息暴露) — Vulnerability Class 604

604 vulnerabilities classified as CWE-532 (通过日志文件的信息暴露). AI Chinese analysis included.

CWE-532 represents a critical information disclosure weakness where software inadvertently records sensitive data, such as passwords, credit card numbers, or personal identifiers, into log files. This vulnerability is typically exploited by attackers who gain access to these logs through insufficient file permissions, insecure storage practices, or compromised administrative accounts. Once accessed, the exposed data can be harvested for identity theft, financial fraud, or further system intrusion. To prevent this, developers must implement strict data sanitization protocols, ensuring that sensitive fields are masked or excluded before logging. Additionally, employing robust access controls and encryption for log storage, alongside regular audits of logging configurations, helps mitigate the risk of accidental exposure. By treating log files as potential repositories of confidential information, organizations can significantly reduce their attack surface and maintain compliance with data protection standards.

MITRE CWE Description
The product writes sensitive information to a log file.
Common Consequences (1)
ConfidentialityRead Application Data
Logging sensitive user data, full path names, or system information often provides attackers with an additional, less-protected path to acquiring the information.
Mitigations (4)
Architecture and Design, ImplementationConsider seriously the sensitivity of the information written into log files. Do not write secrets into the log files.
DistributionRemove debug log files before deploying the application into production.
OperationProtect log files against unauthorized read/write.
ImplementationAdjust configurations appropriately when software is transitioned from a debug state to production.
Examples (2)
In the following code snippet, a user's full name and credit card number are written to a log file.
logger.info("Username: " + usernme + ", CCN: " + ccn);
Bad · Java
This code stores location information about the current user:
locationClient = new LocationClient(this, this, this); locationClient.connect(); currentUser.setLocation(locationClient.getLastLocation()); ... catch (Exception e) { AlertDialog.Builder builder = new AlertDialog.Builder(this); builder.setMessage("Sorry, this application has experienced an error."); AlertDialog alert = builder.create(); alert.show(); Log.e("ExampleActivity", "Caught exception: " + e + " While on User:" + User.toString()); }
Bad · Java
CVE IDTitleCVSSSeverityPublished
CVE-2026-0520 Lenovo Filez 安全漏洞 — FileZ 2.8 Low2026-03-11
CVE-2026-20165 Sensitive Information Disclosure in MongoClient logging channel in Splunk Enterprise — Splunk Enterprise 6.3 Medium2026-03-11
CVE-2026-21791 HCL Sametime for Android is affected by sensitive information disclosure — Sametime 3.3 Low2026-03-10
CVE-2026-29184 @backstage/plugin-scaffolder-backend: Potential Session Token Exfiltration via Log Redaction Bypass — backstage 2.0 Low2026-03-07
CVE-2026-24308 Apache ZooKeeper: Sensitive information disclosure in client configuration handling — Apache ZooKeeper 7.5 -2026-03-07
CVE-2026-21786 HCL Sametime for iOS is affected by sensitive information disclosure — Sametime for iOS 3.3 Low2026-03-05
CVE-2025-62879 Rancher Backup Operator pod's logs leak S3 tokens — Rancher 6.8 Medium2026-03-04
CVE-2026-1265 IBM InfoSphere Information Server is vulnerable due to sensitive information written to a log file — InfoSphere Information Server 4.3 Medium2026-03-03
CVE-2026-27900 Terraform Provider Debug Logs Vulnerable to Sensitive Information Exposure — terraform-provider-linode 5.0 Medium2026-02-26
CVE-2025-0976 Information Exposure Vulnerability in Hitachi Configuration Manager, Hitachi Ops Center API Configuration Manager — Hitachi Ops Center API Configuration Manager 4.7 Medium2026-02-25
CVE-2025-5781 Information Exposure Vulnerability in Hitachi Configuration Manager, Hitachi Ops Center API Configuration Manager — Hitachi Ops Center API Configuration Manager 5.2 Medium2026-02-25
CVE-2025-27555 Apache Airflow: Connection Secrets not masked in UI when Connection are added via Airflow cli — Apache Airflow 6.5AIMediumAI2026-02-24
CVE-2026-2350 Tanium addressed an insertion of sensitive information into log file vulnerability in Interact and TDS. — Interact 6.5 Medium2026-02-19
CVE-2026-1292 Tanium addressed an insertion of sensitive information into log file vulnerability in Trends. — Trends 6.5 Medium2026-02-19
CVE-2026-2605 Tanium addressed an insertion of sensitive information into log file vulnerability in TanOS. — TanOS 5.3 Medium2026-02-19
CVE-2026-20142 Sensitive Information Disclosure in "_internal" index in Splunk Enterprise — Splunk Enterprise 6.8 Medium2026-02-18
CVE-2026-20138 Sensitive Information Disclosure in "_internal" index in Splunk Enterprise — Splunk Enterprise 6.8 Medium2026-02-18
CVE-2026-20144 Sensitive Information Disclosure in ''_internal'' index in Splunk Enterprise — Splunk Enterprise 6.8 Medium2026-02-18
CVE-2026-1495 Insertion of Sensitive Information into Log File vulnerability in AVEVA PI to CONNECT Agent — PI to CONNECT Agent 6.5 Medium2026-02-10
CVE-2026-21222 Windows Kernel Information Disclosure Vulnerability — Windows 10 Version 1607 5.5 Medium2026-02-10
CVE-2025-11547 Axis Camera Station Pro 安全漏洞 — AXIS Camera Station Pro 7.8 High2026-02-10
CVE-2026-25918 unity-cli Exposes Plaintext Credentials in Debug Logs (sign-package command) — unity-cli 7.5AIHighAI2026-02-09
CVE-2026-25813 PlaciPy Exposes Sensitive Data via Application Logs — assessment-placipy 7.5AIHighAI2026-02-09
CVE-2026-25846 JetBrains YouTrack 日志信息泄露漏洞 — YouTrack 6.5 Medium2026-02-09
CVE-2025-15332 Tanium addressed an information disclosure vulnerability in Threat Response. — Threat Response 4.9 Medium2026-02-05
CVE-2026-22038 AutoGPT's API Keys and Secrets Logged in Plaintext in Stagehand Integration Blocks — AutoGPT 8.1 High2026-02-04
CVE-2026-1622 Unredacted data exposure in query.log — Enterprise Edition 3.3AILowAI2026-02-04
CVE-2026-24762 RustFS Logs Sensitive Credentials in Plaintext — rustfs 6.5AIMediumAI2026-02-03
CVE-2026-22778 vLLM leaks a heap address when PIL throws an error — vllm 9.8 Critical2026-02-02
CVE-2026-25211 Llama Stack 日志信息泄露漏洞 — Llama Stack 3.2 Low2026-01-30

Vulnerabilities classified as CWE-532 (通过日志文件的信息暴露) represent 604 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.