Class · High

CWE-909: Missing Initialization of Resource

The product does not initialize a critical resource.

CWE-909 · Class Level ·2 CVEs ·4 Mitigations

Description

The product does not initialize a critical resource.

Many resources require initialization before they can be properly used. If a resource is not initialized, it could contain unpredictable or expired data, or it could be initialized to defaults that are invalid. This can have security implications when the resource is expected to have certain properties or values.

Potential Impact

Confidentiality

Read Memory, Read Application Data

Availability

DoS: Crash, Exit, or Restart

Demonstrative Examples

Here, a boolean initiailized field is consulted to ensure that initialization tasks are only completed once. However, the field is mistakenly set to true during static initialization, so the initialization code is never reached.
Bad
private boolean initialized = true;public void someMethod() {
                        if (!initialized) {
                              
                                 
                                 // perform initialization tasks
                                 ...
                                 initialized = true;
                           }
The following code intends to limit certain operations to the administrator only.
Bad
$username = GetCurrentUser();$state = GetStateData($username);if (defined($state)) {$uid = ExtractUserID($state);}
                     
                     # do stuff
                     if ($uid == 0) {DoAdminThings();}
If the application is unable to extract the state information - say, due to a database timeout - then the $uid variable will not be explicitly set by the programmer. This will cause $uid to be regarded as equivalent to "0" in the conditional, allowing the original user to perform administrator actions. Even if the attacker cannot directly influence the state data, unexpected errors could cause incorrect privileges to be assigned to a user just by accident.
The following code intends to concatenate a string to a variable and print the string.
Bad
char str[20];strcat(str, "hello world");printf("%s", str);
This might seem innocent enough, but str was not initialized, so it contains random memory. As a result, str[0] might not contain the null terminator, so the copy might start at an offset other than 0. The consequences can vary, depending on the underlying memory.
If a null terminator is found before str[8], then some bytes of random garbage will be printed before the "hello world" string. The memory might contain sensitive information from previous uses, such as a password (which might occur as a result of CWE-14 or CWE-244). In this example, it might not be a big deal, but consider what could happen if large amounts of memory are printed out before the null terminator is found.
If a null terminator isn't found before str[8], then a buffer overflow could occur, since strcat will first look for the null terminator, then copy 12 bytes starting with that location. Alternately, a buffer over-read might occur (CWE-126) if a null terminator isn't found before the end of the memory segment is reached, leading to a segmentation fault and crash.
This example will leave test_string in an unknown condition when i is the same value as err_val, because test_string is not initialized (CWE-456). Depending on where this code segment appears (e.g. within a function body), test_string might be random if it is stored on the heap or stack. If the variable is declared in static memory, it might be zero or NULL. Compiler optimization might contribute to the unpredictability of this address.
Bad
char *test_string;
                if (i != err_val)
                {
                test_string = "Hello World!";
                }
                printf("%s", test_string);
Good
char *test_string = "Done at the beginning";
				if (i != err_val)
				{
				test_string = "Hello World!";
				}
				printf("%s", test_string);
Another solution is to ensure that each branch of the conditional - including the default/else branch - could ensure that test_string is set:
Good
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

Implementation

Explicitly initialize the resource before use. If this is performed through an API function or standard procedure, follow all specified steps.

Implementation

Pay close attention to complex conditionals that affect initialization, since some branches might not perform the initialization.

Implementation

Avoid race conditions (CWE-362) during initialization routines.

Build and Compilation

Run or compile your 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 IDDescription
CVE-2020-20739A variable that has its value set in a conditional statement is sometimes used when the conditional fails, sometimes causing data leakage
CVE-2005-1036Chain: Bypass of access restrictions due to improper authorization (CWE-862) of a user results from an improperly initialized (CWE-909) I/O permission bitmap

Frequently Asked Questions

What is CWE-909?

CWE-909 (Missing Initialization of Resource) is a software weakness identified by MITRE's Common Weakness Enumeration. It is classified as a Class-level weakness. The product does not initialize a critical resource.

How can CWE-909 be exploited?

Attackers can exploit CWE-909 (Missing Initialization of Resource) to read memory, read application data. This weakness is typically introduced during the Implementation phase of software development.

How do I prevent CWE-909?

Key mitigations include: Explicitly initialize the resource before use. If this is performed through an API function or standard procedure, follow all specified steps.

What is the severity of CWE-909?

CWE-909 is classified as a Class-level weakness (High abstraction). It has been observed in 2 real-world CVEs.