up vote 4 down vote favorite
2
share [g+] share [fb]

What is the difference among heap spraying, heap overflow, heap overrun?

Can those terms be replaced with buffer spraying, buffer overflow, buffer overrun?

Do they have the same definitions as well?

link|improve this question
feedback

2 Answers

  • Spraying is writing things to random (or at least arbitrary) addresses in the named space, thus corrupting arbitrary things in the space
  • Overflow is putting more data in the space than it will hold, thus corrupting adjacent spaces
  • Overrun is putting more data in a subset of the space (e.g. an object allocated in that space) than has been allocated for that subset, thus corrupting adjacent objects.
link|improve this answer
feedback

"Heap" usually refers to dynamically allocated memory. A "Buffer" may lie on the heap, but may also be static or reside on the stack.

link|improve this answer
You might want to clarify that you're responding to the second and third questions, I was about to downmod you. – Adriano Varoli Piazza Aug 3 '09 at 13:55
More specifically, a buffer is a pre-allocated space created for holding some expected incoming data. – Tyler McHenry Aug 3 '09 at 13:55
feedback

Your Answer

 
or
required, but never shown