4

Possible Duplicate:
What security risks does IP spoofing bring?

I found this article, which seems pretty good but was written in 2003 so I'm not sure how up to date it is.

Can IP address spoofing still be used for:

  • Denial of Service attacks

  • Man in the middle attacks

Are there other types of attacks this can be used for?

Abe Miessler
  • 8,165
  • 10
  • 45
  • 72

1 Answers1

2

IP Spoofing with TCP over the open internet is impossible because of the three-way-handshake. So you are limited to ICMP/UDP services or attacks on services available over the local LAN. The local lan is an issue if you are able to sniff the network. So this is a problem if you are on a broadcast network or using ARP poisoning on a switched network. ARP poising is also a spoofed attack.

A good example of a spoofed icmp attack is the Smurf DoS Attack. The UDP variant of this DoS attack is called the Fraggle attack. (Who names these!?!??) Also it should be noted that these attacks are old its unlikely that you'll find a vulnerable network.

So in conclusion IP spoofing has a very limited scope. Because Its an attack that has been taken into consideration and its easy to prevent.

rook
  • 47,004
  • 10
  • 94
  • 182