- What is CWE-908?
- The product uses or accesses a resource that has not been initialized.
- What CVEs are caused by CWE-908?
- 246 recorded CVEs are attributed to CWE-908, including CVE-2024-50302, CVE-2024-29745, CVE-2026-56190. 2 are listed in CISA's Known Exploited Vulnerabilities (KEV) catalog.
- How do you prevent CWE-908?
- Explicitly initialize the resource before use. If this is performed through an API function or standard procedure, follow all required steps.
- How is CWE-908 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-908?
- Exploiting CWE-908 can lead to: Read Memory, Read Application Data, DoS: Crash, Exit, or Restart.
- Is CWE-908 actively exploited?
- Yes. 2 CWE-908 vulnerabilities are in CISA's KEV catalog of actively exploited flaws, out of 246 recorded CVEs.