What is the difference between a stack overflow and buffer overflow?

后端 未结 10 1183
一生所求
一生所求 2020-12-07 08:46

What is the difference between a stack overflow and a buffer overflow in programming?

10条回答
  •  孤街浪徒
    2020-12-07 09:36

    Let me explain in a simpler way with a diagram of RAM. Before jumping into it, I suggest reading about StackFrame, Heap Memory.

    As you can see, the Stack grows downwards (showed by arrow) assuming it's stack. The kernel code, text, data all are static data, so they are fixed. The heap portion being dynamic grows upwards (showed by arrow).

提交回复
热议问题