Certified Ethical Hacker (CEH v12) — Question 161

Consider a hypothetical situation where an attacker, known for his proficiency in SQL Injection attacks, is targeting your web server. This adversary meticulously crafts 'q' malicious SQL queries, each inducing a delay of 'd' seconds in the server response. This delay in response is an indicator of a potential attack. If the total delay, represented by the product 'q*d', crosses a defined threshold 'T', an alert is activated in your security system. Furthermore, it is observed that the attacker prefers prime numbers for 'q', and 'd' follows a pattern in the Fibonacci sequence. Now, consider 'd=13' seconds (a Fibonacci number) and various values of 'q' (a prime number) and 'T'. Which among the following scenarios will most likely trigger an alert?

Answer options

Correct answer: A

Explanation

Option A is correct because the total delay of 221 seconds exceeds the threshold of 220 seconds, triggering an alert. Option B has a total delay of 169 seconds which is below the threshold of 180 seconds, so it would not trigger an alert. Option C also does not surpass its threshold, and Option D remains below the threshold, meaning neither would activate an alert.