CWE-215 通过Debug信息导致的信息暴露

Information Exposure Through Debug Information

结构: Simple

Abstraction: Variant

状态: Draft

被利用可能性: unkown

基本描述

The application contains debugging code that can expose sensitive information to untrusted parties.

相关缺陷

  • cwe_Nature: ChildOf cwe_CWE_ID: 200 cwe_View_ID: 1000 cwe_Ordinal: Primary

  • cwe_Nature: ChildOf cwe_CWE_ID: 200 cwe_View_ID: 699 cwe_Ordinal: Primary

适用平台

Language: {'cwe_Class': 'Language-Independent', 'cwe_Prevalence': 'Undetermined'}

常见的影响

范围 影响 注释
Confidentiality Read Application Data

可能的缓解方案

Implementation

策略:

Do not leave debug statements that could be executed in the source code. Assure that all debug information is eradicated before releasing the software.

MIT-46 Architecture and Design

策略: Separation of Privilege

Compartmentalize the system to have "safe" areas where trust boundaries can be unambiguously drawn. Do not allow sensitive data to go outside of the trust boundary and always be careful when interfacing with a compartment outside of the safe area. Ensure that appropriate compartmentalization is built into the system design and that the compartmentalization serves to allow for and further reinforce privilege separation functionality. Architects and designers should rely on the principle of least privilege to decide when it is appropriate to use and to drop system privileges.

示例代码

The following program changes its behavior based on a debug flag.

bad JSP

<% if (Boolean.getBoolean("debugEnabled")) {
%>
User account number: <%= acctNo %>
<%
} %>

The code writes sensitive debug information to the client browser if the "debugEnabled" flag is set to true .

分析过的案例

标识 说明 链接
CVE-2004-2268 Password exposed in debug information. https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2004-2268
CVE-2002-0918 CGI script includes sensitive information in debug messages when an error is triggered. https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2002-0918
CVE-2003-1078 FTP client with debug option enabled shows password to the screen. https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2003-1078

Notes

分类映射

映射的分类名 ImNode ID Fit Mapped Node Name
PLOVER Infoleak Using Debug Information
OWASP Top Ten 2007 A6 CWE More Specific Information Leakage and Improper Error Handling
OWASP Top Ten 2004 A10 CWE More Specific Insecure Configuration Management
Software Fault Patterns SFP23 Exposed Data