- What is CWE-779?
- The product logs too much information, making log files hard to process and possibly hindering recovery efforts or forensic analysis after an attack.
- What CVEs are caused by CWE-779?
- 18 recorded CVEs are attributed to CWE-779, including CVE-2024-36072, CVE-2024-36416, CVE-2023-23949.
- How do you prevent CWE-779?
- Suppress large numbers of duplicate log messages and replace them with periodic summaries. For example, syslog may include an entry that states "last message repeated X times" when recording repeated events.
- How is CWE-779 detected?
- Automated Static Analysis: Automated static analysis, commonly referred to as Static Application Security Testing (SAST), can find some instances of this weakness by analyzing source code (or binary/compiled code) without having to execute it. Typically, this is done by building a model of data flow and control flow, then searching for potentially-vulnerable patterns that connect "sources" (origins of input) with "sinks" (destinations where the data interacts with external components, a lower layer such as the OS, etc.)
- What are the consequences of CWE-779?
- Exploiting CWE-779 can lead to: DoS: Resource Consumption (CPU), DoS: Resource Consumption (Other), Hide Activities.
- Is CWE-779 actively exploited?
- 18 recorded CVEs are caused by CWE-779; none are currently in CISA's KEV catalog of actively exploited flaws.