From f0614eadd2fce4dfa71d8c1b6691c0fc5b7dd140 Mon Sep 17 00:00:00 2001 From: Austin Songer Date: Tue, 21 Jan 2020 22:43:36 +0000 Subject: [PATCH] ANSWERED: Explain what is Buffer Overflow --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index cc9d3f9..a81886c 100644 --- a/README.md +++ b/README.md @@ -5454,6 +5454,10 @@ HTTP Header Injection vulnerabilities occur when user input is insecurely includ
Explain what is Buffer Overflow
+ +A buffer overflow (or buffer overrun) occurs when the volume of data exceeds the storage capacity of the memory buffer. As a result, the program attempting to write the data to the buffer overwrites adjacent memory locations. + +
##### Containers