I am new to the ethical hacking world, and one of the most important things is the stack overflow, anyway I coded a vulnerable C program which has a char name [400] statement, and when I try to run the program with 401A's it doesn't overflow, but the book which I am following says it must overflow and the logic sense says so, so what's wrong???
|
|
If you've defined a buffer:
And wrote 401 bytes into it, the buffer has overflown. The rest, however, depends on the structure of your code:
Things are more complex than they seem. To quote Wikipedia:
Note the multiple instances of the word may in this quote. All of this may happen, and it may not. Again, this depends on other factors. |
|||
|
C doesn't check about buffer overflow (overflowing the buffer is an undefined behavior). Usually the system will just allow you (and the hacker) to write beyond the buffer, and this is the reason why buffer overflow is vulnerable. For example if the code is
The memory may be layout as
Now if you write 401
|
||||
|
|
|
Stackoverflow and bufferoverflow are different concepts.
This should overflow the stack. It will reserve 500 * sizeof(int) every time it enters the function. Bufferoverflow:
You have two variables, an array a and an array b. a can hold 4 elements and b can hold 2.
Now you write 5 elements into a, the 5th element lands in b.
This should print 22. it will write outside of a, into the memory used by b. Note: None of my example functions are guaranteed to work, the compiler is free to optimize function calls and to arrange the memory used on the stack as it wants. It may even print a compile error on accessing memory out of bounds for array a. |
|||
|
|
|
Here's a good example in C showing how a buffer overflow can be used to execute arbitrary code. Its objective is to find an input string that will overwrite a return address causing a target function to be executed. For a very good explanation of buffer overflows I would recommend chapter 5 of Writing Secure Code 2nd Edition. Other good info on buffer overflows:
|
||||
|
|