I asked about What is HTTP GET/POST Flooding Attack? recently and I got a few detailed answers about what they are and how they work.
Now I want to find out what are the disadvantages of them.
|
I asked about What is HTTP GET/POST Flooding Attack? recently and I got a few detailed answers about what they are and how they work. Now I want to find out what are the disadvantages of them. |
|||||
|
|
Main disadvantages (for the attacker) of that kind of flooding attack are:
|
|||
|
|
When somebody floods with requests your server won't be able to serve all the customers, that is failing to serve the real customer. If you know Denial of Service attacks you can understand quickly. If you don't to just take a look at DoS attack. |
|||
|
|
|
It all depends on what you class as an "disadvantage" of such an attack, because it all depends on which end of the attack you're on. I'll assume you mean from an attacker's perspective, since that's the only way I can envision this question making sense. The primary two disadvantages are based on monitoring and mitigation. HTTP traffic is heavily monitored by firewall / IDS / IPS infrastructure across most networks, and is likely to trigger alerts much faster than other DoS traffic. There are also many products and services tailored to mitigating HTTP DoS attacks, e.g. CloudFlare. As such, most DoS protection is focused around keeping the HTTP server accessible to legitimate clients. Alternative DoS mechanisms (e.g. HTTPS flood, SSH flood, SMTP flood, DNS flood, etc.) may be harder to block and monitor, since less networks tend to implement stringent monitoring and mitigation mechanisms for those services. In terms of mitigation, all network traffic (especially rates) regardless of protocol should be monitored, and proper protection processes and mechanisms should be implemented. That way there's always at least a minimal layer of protection against DoS attacks at the IP layer. |
|||||
|