1

What is behavior of UDP flood, TCP SYN flood, Ping of Death and Smurf attack?

Vilican
  • 2,703
  • 8
  • 21
  • 35
azahari
  • 27
  • 2

1 Answers1

1

Ping of Death, Teardrop etc. were local attacks for broken TCP/IP stack implementations and caused affected systems to crash (mostly in late 90-ties).

Smurf in an example of distributed (DDoS) attack, which uses ICMP Echo Request with spoofed address to cause victim systems to be flooded by ICMP Echo Reply packets.

TCP SYN flood is an attack to overflow victim's TCP connection queue, so it won't be able to handle new incoming connections.

UDP flood is just sending multiple UDP packets to fill victim's bandwitdh.

Tomasz Klim
  • 1,466
  • 12
  • 13