Re: tcp vulnerability? haven't seen anything on it here...

From: David S. Miller
Date: Thu Apr 22 2004 - 13:41:19 EST


On Thu, 22 Apr 2004 07:35:54 -0400 (EDT)
"Richard B. Johnson" <root@xxxxxxxxxxxxxxxxxx> wrote:

> Has anybody checked to see what Linux does if it receives a
> RST to the broadcast address? It would be a shame if all
> connections were dropped!

int tcp_v4_rcv(struct sk_buff *skb)
{
...
if (skb->pkt_type != PACKET_HOST)
goto discard_it;

Packets which are multicast or broadcast do not get marked
as "PACKET_HOST".
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/