Search K
Appearance
Appearance
Other ways to support HackTricks:
The core idea here is to understand what happens with uninitialized variables as they will have the value that was already in the assigned memory to them. Example:
initializeVariable
: We declare a variable x
and assign it a value, let's say 0x1234
. This action is akin to reserving a spot in memory and putting a specific value in it.useUninitializedVariable
: Here, we declare another variable y
but do not assign any value to it. In C, uninitialized variables don't automatically get set to zero. Instead, they retain whatever value was last stored at their memory location.When we run these two functions sequentially:
initializeVariable
, x
is assigned a value (0x1234
), which occupies a specific memory address.useUninitializedVariable
, y
is declared but not assigned a value, so it takes the memory spot right after x
. Due to not initializing y
, it ends up "inheriting" the value from the same memory location used by x
, because that's the last value that was there.This behavior illustrates a key concept in low-level programming: Memory management is crucial, and uninitialized variables can lead to unpredictable behavior or security vulnerabilities, as they may unintentionally hold sensitive data left in memory.
Uninitialized stack variables could pose several security risks like:
#include <stdio.h>
// Function to initialize and print a variable
void initializeAndPrint() {
int initializedVar = 100; // Initialize the variable
printf("Initialized Variable:\n");
printf("Address: %p, Value: %d\n\n", (void*)&initializedVar, initializedVar);
}
// Function to demonstrate the behavior of an uninitialized variable
void demonstrateUninitializedVar() {
int uninitializedVar; // Declare but do not initialize
printf("Uninitialized Variable:\n");
printf("Address: %p, Value: %d\n\n", (void*)&uninitializedVar, uninitializedVar);
}
int main() {
printf("Demonstrating Initialized vs. Uninitialized Variables in C\n\n");
// First, call the function that initializes its variable
initializeAndPrint();
// Then, call the function that has an uninitialized variable
demonstrateUninitializedVar();
return 0;
}
initializeAndPrint
Function: This function declares an integer variable initializedVar
, assigns it the value 100
, and then prints both the memory address and the value of the variable. This step is straightforward and shows how an initialized variable behaves.demonstrateUninitializedVar
Function: In this function, we declare an integer variable uninitializedVar
without initializing it. When we attempt to print its value, the output might show a random number. This number represents whatever data was previously at that memory location. Depending on the environment and compiler, the actual output can vary, and sometimes, for safety, some compilers might automatically initialize variables to zero, though this should not be relied upon.main
Function: The main
function calls both of the above functions in sequence, demonstrating the contrast between an initialized variable and an uninitialized one.This doesn't change at all in ARM64 as local variables are also managed in the stack, you can check this example were this is shown.
Other ways to support HackTricks: