This site is the archived OWASP Foundation Wiki and is no longer accepting Account Requests.
To view the new OWASP Foundation website, please visit https://owasp.org

Testing for DoS Buffer Overflows (OWASP-DS-003)

From OWASP
Revision as of 18:17, 28 July 2006 by Weilin Zhong (talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search


Any language where the developer has direct responsibility for managing memory allocation, most notably C & C++, has the potential for a buffer overflow. While the most serious risk related to a buffer overflow is the ability to execute arbitrary code on the server, the first risk comes from the denial of service that can happen if the application crashes. Buffer overflows will be discussed in more detail elsewhere in this testing document, but we will briefly give an example as it relates to an application denial of service.

Code Example

The following is a simplified example of vulnerable code in C:

void overflow (char *str) {
   char buffer[10];
   strcpy(buffer, str); // Dangerous!
}

int main () {
  char *str = "This is a string that is larger than the buffer of 10";
  overflow(str);
}

If this code example were executed, it would cause a segmentation fault and dump core. While this above example is an extremely simple case, the reality is that in a web based application there may be places where the str value was not static, but rather taken from a value provided within a name/value pair.

Testing Black Box

Refer to the Buffer Overflow section for how to submit a range of lengths to the application looking for possible locations that may be vulnerable. As it relates to a DoS, if you have received a message that makes you believe that the overflow has occurred, attempt to make another legitimate request from the server and see if it still responsds.

Testing White Box

Please refer to the Buffer Overflow section of this document for detailed information on this testing.

OWASP Testing Guide Table of Contents