Certified Ethical Hacker (CEH v13) — Question 124

An audacious attacker is targeting a web server you oversee. He intends to perform a Slow HTTP POST attack, by manipulating 'a' HTTP connection. Each connection sends a byte of data every 'b' second, effectively holding up the connections for an extended period. Your server is designed to manage 'm' connections per second, but any connections exceeding this number tend to overwhelm the system. Given 'a=100' and variable 'm', along with the attacker's intention of maximizing the attack duration 'D=a*b', consider the following scenarios. Which is most likely to result in the longest duration of server unavailability?

Answer options

Correct answer: A

Explanation

Option A is correct because the server's capacity of 90 connections per second is insufficient against the attacker's 100 connections, and with a hold-up time of 15 seconds, it leads to a significant duration of unavailability. Options B and C are incorrect as they both have sufficient capacity to handle the attacker's connections, thereby minimizing downtime. Option D, while also exceeding the number of connections, has a shorter hold-up time of 10 seconds, which results in less impact compared to option A.