Denial of Service
Introduction
Denial of Service is a type of attack on a service that disrupts its normal function and prevents other users from accessing it
Where to find
This vulnerability can appear in all features of the application. Depending on how to exploit it, for example in the file upload feature, you can upload very large files
How to exploit
Cookie bomb
After input "xxxxxxxxxxxxxx" as a value of param1, check your cookies. If there is cookies the value is "xxxxxxxxxxxxxxxxxxxxxx" it means the website is vulnerable
Try input a very long payload to form. For example using very long password or using very long email
Pixel flood, using image with a huge pixels
Download the payload: Here
Frame flood, using GIF with a huge frame
Download the payload: Here
Sometimes in website we found a parameter that can adjust the size of the image, for example
Try change "500" to "99999999999"
Try changing the value of the header with something new, for example:
Sometimes if you try bug "No rate limit", after a long try it. The server will go down because there is so much requests
ReDoS (Regex DoS) occurs due to poorly implemented RegEx
CPDoS (Cache Poisoned Denial of Service)
HTTP Header Oversize (HHO)
A malicious client sends an HTTP GET request including a header larger than the size supported by the origin server but smaller than the size supported by the cache
The response is
HTTP Meta Character (HMC)
this attack tries to bypass a cache with a request header containing a harmful meta character. Meta characters can be, e.g., control characters such as line break/carriage return (\n), line feed (\r) or bell (\a).
The response is
HTTP Method Override (HMO)
There are several headers present in HTTP Standard that allow modifying overriding the original HTTP header. Some of these headers are:
The header instructs the application to override the HTTP method in request.
The response is
X-Forwarded-Port
X-Forwarded-Host
References
Last updated