- What is CWE-113?
- The product receives data from an HTTP agent/component (e.g., web server, proxy, browser, etc.), but it does not neutralize or incorrectly neutralizes CR and LF characters before the data is included in outgoing HTTP headers.
- What CVEs are caused by CWE-113?
- 71 recorded CVEs are attributed to CWE-113, including CVE-2026-38967, CVE-2024-40324, CVE-2019-25101.
- How do you prevent CWE-113?
- Construct HTTP headers very carefully, avoiding the use of non-validated input data.
- How is CWE-113 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-113?
- Exploiting CWE-113 can lead to: Modify Application Data, Gain Privileges or Assume Identity.
- Is CWE-113 actively exploited?
- 71 recorded CVEs are caused by CWE-113; none are currently in CISA's KEV catalog of actively exploited flaws.