About 11,100 results
Open links in new tab
  1. c - Explain stack overflow and heap overflow in programming with ...

    Jan 16, 2011 · The heap overflow is very small, and hard to detect. The stack overflow can be small (non-existent if the passed string is short enough) or dramatic. You normally get more dramatic …

  2. addressSanitizer: heap-buffer-overflow on address

    Jul 29, 2018 · char* x = malloc(10); char n=x[-11]; //heap-buffer-underflow what is address and thread? Address is position in memory, thread is part of process running sequence of code. and why it says …

  3. c - What is heap-buffer-overflow? - Stack Overflow

    A heap buffer overflow is when you access outside an array that was allocated on the heap (i.e. using malloc()). The problem is that the best_split array isn't big enough.

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

    Jul 13, 2009 · 3 Buffer overflow usually stands for anytime a memory buffer is accessed beyond it's bounds whether stack or heap. A stack overflow means the stack has exceed it's allocated limit and …

  5. memória - O que são e onde estão a "stack" e "heap"? - Stack Overflow ...

    O que são esses tais de stack e heap que tanto se fala em gerenciamento de memória? Isso realmente são porções da memória como algumas pessoas falam ou é apenas um conceito abstrato para …

  6. c - malloc () with heap overflow explanation - Stack Overflow

    Jun 6, 2017 · You got your heap overflow, because strcpy blew past the allocated size. It also blew through the "bookkeeping info" stored by malloc, and spills into the next allocation.

  7. security - Heap overflow attacks - Stack Overflow

    Nov 15, 2021 · 19 How are heap overflow attacks executed? In the case of stack overflow attacks, the attacker replaces the function return address with his address of choice. How is this done in the case …

  8. What and where are the stack and heap? - Stack Overflow

    Sep 17, 2008 · The stack and heap were not primarily introduced to improve speed; they were introduced to handle memory overflow. The first concern regarding use of the stack vs. the heap …

  9. Use a heap overflow to write arbitrary data

    Mar 10, 2012 · I've been trying to learn the basics of a heap overflow attack. I'm mostly interested in using a corruption or modification of the chunk metadata for the basis of the attack, but I'm also open …

  10. What is the difference among heap spraying, heap overflow, heap …

    Aug 3, 2009 · 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 …