- What is CWE-915?
- The product receives input from an upstream component that specifies multiple attributes, properties, or fields that are to be initialized or updated in an object, but it does not properly control which attributes can be modified.
- What CVEs are caused by CWE-915?
- 95 recorded CVEs are attributed to CWE-915, including CVE-2026-50160, CVE-2026-33453, CVE-2025-58367.
- How do you prevent CWE-915?
- If available, use features of the language or framework that allow specification of allowlists of attributes or fields that are allowed to be modified. If possible, prefer allowlists over denylists.
- How is CWE-915 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-915?
- Exploiting CWE-915 can lead to: Modify Application Data, Execute Unauthorized Code or Commands, Varies by Context, Alter Execution Logic.
- Is CWE-915 actively exploited?
- 95 recorded CVEs are caused by CWE-915; none are currently in CISA's KEV catalog of actively exploited flaws.