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

Difference between revisions of "Testing for Denial of Service"

From OWASP
Jump to: navigation, search
Line 12: Line 12:
  
 
#[[Testing for SQL Wildcard Attacks  (OWASP-DS-001)]]  
 
#[[Testing for SQL Wildcard Attacks  (OWASP-DS-001)]]  
#[[DoS Testing: Locking Customer Accounts]]
+
#[[Testing for DoS Locking Customer Accounts (OWASP-DS-002)]]
 
#[[DoS Testing: Buffer Overflows]]
 
#[[DoS Testing: Buffer Overflows]]
 
#[[DoS Testing: User Specified Object Allocation]]
 
#[[DoS Testing: User Specified Object Allocation]]

Revision as of 23:03, 15 December 2008

OWASP Testing Guide v3 Table of Contents

This article is part of the OWASP Testing Guide v3. The entire OWASP Testing Guide v3 can be downloaded here.

OWASP at the moment is working at the OWASP Testing Guide v4: you can browse the Guide here

4.9 Denial of Service Testing


A denial of service (DoS) attack is an attempt to make a resource unavailable to its legitimate users. Traditionally, denial of service (DoS) attacks have been network based: a malicious user floods a target machine with enough traffic to make it incapable of servicing its intended users. When the attack is launched by leveraging a large number of machines, the attack is typically called a distributed denial of service (DDoS) attack. In general, network DoS attacks are beyond the scope of what application developers can prevent within their own code. This type of “battle of the network pipes” is best mitigated via network architecture solutions.

There are, however, types of vulnerabilities at the application level that can allow a malicious user to make certain functionality or, sometimes, the entire website unavailable. These problems are caused by bugs in the application and often are triggered by malicious or unexpected user input. This section will focus on application layer attacks against availability that can be launched by just one malicious user on a single machine.

Here are the DoS tests we will talk about:

  1. Testing for SQL Wildcard Attacks (OWASP-DS-001)
  2. Testing for DoS Locking Customer Accounts (OWASP-DS-002)
  3. DoS Testing: Buffer Overflows
  4. DoS Testing: User Specified Object Allocation
  5. DoS Testing: User Input as a Loop Counter
  6. DoS Testing: Writing User Provided Data to Disk
  7. DoS Testing: Failure to Release Resources
  8. DoS Testing: Storing too Much Data in Session


References

Stephen de Vries, Application denial of service (DoS) attacks: http://www.corsaire.com/white-papers/040405-application-level-dos-attacks.pdf