Certified Ethical Hacker (CEH v13) — Question 134

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

The correct answer is A because the total delay of 221 seconds surpasses the threshold of 220, which would likely activate an alert. Options B and C do not exceed their respective thresholds, and option D also falls short of the threshold, thus no alerts would be triggered in those cases.