<dd id="sga4y"><optgroup id="sga4y"></optgroup></dd>
<nav id="sga4y"><code id="sga4y"></code></nav>
  • <optgroup id="sga4y"></optgroup>

    System Information Leak

    ABSTRACT

    揭示系統數據或調試信息有助于攻擊者了解系統并制定攻擊計劃。

    EXPLANATION

    當系統數據或調試信息通過輸出流或者日志功能流出程序時,就會發生信息泄漏。

    示例:以下代碼捕獲了一個異常并將相應的異常消息輸出到頁面中。


    <cfcatch type="Any">
    <cfset exception=getException(myObj)>
    <cfset message=exception.toString()>
    <cfoutput>
    Exception message:#message#
    </cfoutput>
    </cfcatch>


    根據系統配置,這些信息可以寫入日志文件中或顯示給遠程用戶。在某些情況下,該錯誤消息恰好可以告訴攻擊者入侵這一系統的可能性究竟有多大。例如,一個數據庫錯誤消息可以揭示應用程序容易受到 SQL Injection 攻擊。其他的錯誤消息可以揭示有關該系統的更多間接線索。在上述例子中,搜索路徑可能會暗示操作系統的類型、系統上安裝了哪些應用程序,以及管理員在配置應用程序時做了哪些方面的努力。

    REFERENCES

    [1] Standards Mapping - OWASP Top 10 2007 - (OWASP 2007) A6 Information Leakage and Improper Error Handling

    [2] Standards Mapping - Security Technical Implementation Guide Version 3 - (STIG 3) APP3620 CAT II

    [3] Standards Mapping - Security Technical Implementation Guide Version 3.4 - (STIG 3.4) APP3620 CAT II

    [4] Standards Mapping - Common Weakness Enumeration - (CWE) CWE ID 497

    [5] Standards Mapping - Web Application Security Consortium 24 + 2 - (WASC 24 + 2) Information Leakage

    [6] Standards Mapping - Payment Card Industry Data Security Standard Version 2.0 - (PCI 2.0) Requirement 6.5.5

    [7] Standards Mapping - Payment Card Industry Data Security Standard Version 1.2 - (PCI 1.2) Requirement 6.5.6


    Copyright 2013 Fortify Software - All rights reserved.
    (Generated from version 2013.1.1.0008 of the Fortify Secure Coding Rulepacks)
    desc.dataflow.cfml.system_information_leak

    97av