Investigated and analysed a network attack that disrupted website accessibility, identifying the attack vector and its impact. Provided a comprehensive incident report detailing the attack's methodology and effects.
| Part 1: The type of attack that may have caused this network interruption |
|---|
| The website's connection timeout error could be attributed to a potential Denial of Service (DoS) attack. Analysis of the logs reveals that the web server ceases to respond when inundated with an excessive number of SYN packet requests. This incident aligns with a specific type of DoS attack known as SYN flooding. |
| Part 2: How the attack is causing the website malfunction |
|---|
When visitors attempt to establish a connection with the web server, a standard three-step handshake occurs through the TCP protocol. This handshake involves:
The logs point to a scenario where the web server is inundated, rendering it incapable of processing SYN requests from visitors. Consequently, new visitors experience a connection timeout message as the server lacks the resources to establish additional connections. |