Description
The product uses or accesses a resource that has not been initialized.
When a resource has not been properly initialized, the product may behave unexpectedly. This may lead to a crash or invalid memory access, but the consequences vary depending on the type of resource and how it is used within the product.
Potential Impact
Confidentiality
Read Memory, Read Application Data
Availability
DoS: Crash, Exit, or Restart
Demonstrative Examples
private boolean initialized = true;public void someMethod() {
if (!initialized) {
// perform initialization tasks
...
initialized = true;
}$username = GetCurrentUser();$state = GetStateData($username);if (defined($state)) {$uid = ExtractUserID($state);}
# do stuff
if ($uid == 0) {DoAdminThings();}char str[20];strcat(str, "hello world");printf("%s", str);char *test_string;
if (i != err_val)
{
test_string = "Hello World!";
}
printf("%s", test_string);char *test_string = "Done at the beginning";
if (i != err_val)
{
test_string = "Hello World!";
}
printf("%s", test_string);char *test_string;
if (i != err_val)
{
test_string = "Hello World!";
}
else {
test_string = "Done on the other side!";
}
printf("%s", test_string);Mitigations & Prevention
Explicitly initialize the resource before use. If this is performed through an API function or standard procedure, follow all required steps.
Pay close attention to complex conditionals that affect initialization, since some branches might not perform the initialization.
Avoid race conditions (CWE-362) during initialization routines.
Run or compile the product with settings that generate warnings about uninitialized variables or data.
Detection Methods
- Automated Static Analysis High — 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 sea
Real-World CVE Examples
| CVE ID | Description |
|---|---|
| CVE-2019-9805 | Chain: Creation of the packet client occurs before initialization is complete (CWE-696) resulting in a read from uninitialized memory (CWE-908), causing memory corruption. |
| CVE-2008-4197 | Use of uninitialized memory may allow code execution. |
| CVE-2008-2934 | Free of an uninitialized pointer leads to crash and possible code execution. |
| CVE-2008-0063 | Product does not clear memory contents when generating an error message, leading to information leak. |
| CVE-2008-0062 | Lack of initialization triggers NULL pointer dereference or double-free. |
| CVE-2008-0081 | Uninitialized variable leads to code execution in popular desktop application. |
| CVE-2008-3688 | Chain: Uninitialized variable leads to infinite loop. |
| CVE-2008-3475 | Chain: Improper initialization leads to memory corruption. |
| CVE-2005-1036 | Chain: Bypass of access restrictions due to improper authorization (CWE-862) of a user results from an improperly initialized (CWE-909) I/O permission bitmap |
| CVE-2008-3597 | Chain: game server can access player data structures before initialization has happened leading to NULL dereference |
| CVE-2009-2692 | Chain: Use of an unimplemented network socket operation pointing to an uninitialized handler function (CWE-456) causes a crash because of a null pointer dereference (CWE-476) |
| CVE-2009-0949 | Chain: improper initialization of memory can lead to NULL dereference |
| CVE-2009-3620 | Chain: some unprivileged ioctls do not verify that a structure has been initialized before invocation, leading to NULL dereference |
Related Weaknesses
Taxonomy Mappings
- CERT C Secure Coding: EXP33-C — Do not read uninitialized memory
Frequently Asked Questions
What is CWE-908?
CWE-908 (Use of Uninitialized Resource) is a software weakness identified by MITRE's Common Weakness Enumeration. It is classified as a Base-level weakness. The product uses or accesses a resource that has not been initialized.
How can CWE-908 be exploited?
Attackers can exploit CWE-908 (Use of Uninitialized Resource) to read memory, read application data. This weakness is typically introduced during the Implementation phase of software development.
How do I prevent CWE-908?
Key mitigations include: Explicitly initialize the resource before use. If this is performed through an API function or standard procedure, follow all required steps.
What is the severity of CWE-908?
CWE-908 is classified as a Base-level weakness (Medium abstraction). It has been observed in 13 real-world CVEs.