1/5
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
When does buffer overflow happen?
When data is written beyond the boundaries of memory allocated
What can buffer overflow be used to modify
Variables, data pointers, function pointers, return address of stack
How can buffer overflow be prevented
Ensuring the input data does not exceed size of smallest buffer
Using safe functions that ensure buffer bounds (strncopy, fgets)
using safe libraries
static analysis
dynamic analysis and testing
programs that perform runtime boundary checking
Function of esp
holds top stack address, points to the next empty space
How can an esp be modified
Directly using operations that will shrink the stack
Indirectly with each pop/push elements get added/removed to/from the stack
Function of ebp
points to the stack bottom.
Each time a new procedure is called, the old value of ebp is pushed down onto the stack, and the new value of esp is moved to ebp