352-001 · Question #503
Which resource will be targeted by a TCP SYN flood attack?
The correct answer is A. connection tables on the target host. A TCP SYN flood exhausts the target host's connection table by sending massive volumes of SYN packets without completing the three-way handshake, leaving half-open connections that consume all available state entries.
Question
Which resource will be targeted by a TCP SYN flood attack?
Options
- Aconnection tables on the target host
- Bsend buffers on transit routers
- CSYN cookies on the target host
- Dshared memory on the routers closest to the target
How the community answered
(66 responses)- A92% (61)
- B3% (2)
- C2% (1)
- D3% (2)
Why each option
A TCP SYN flood exhausts the target host's connection table by sending massive volumes of SYN packets without completing the three-way handshake, leaving half-open connections that consume all available state entries.
When a host receives a SYN packet it allocates a Transmission Control Block (TCB) entry in its connection table and transitions to the SYN_RECEIVED state while awaiting the final ACK. A SYN flood fills this finite table with half-open connections that never complete, causing the host to refuse new legitimate TCP connections once the table is exhausted. This exhaustion of connection state - not bandwidth - is the defining characteristic of a SYN flood attack.
Transit routers do not maintain per-flow TCP connection state for traffic passing through them; SYN flood packets simply transit at line rate without consuming router send buffers.
SYN cookies are a defense mechanism against SYN floods that avoids allocating connection state until the handshake completes - they are a countermeasure, not a resource depleted by the attack.
Routers closest to the target forward packets at line rate without storing TCP connection state in shared memory; stateful connection tracking resides on the end host, not on transit routers.
Concept tested: TCP SYN flood mechanics targeting connection table state
Source: https://www.cisco.com/c/en/us/about/security-center/synflood-ddos-attacks.html
Topics
Community Discussion
No community discussion yet for this question.