Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 21 Jan 2000 11:42:24 -0600
From:      Tim Yardley <yardley@uiuc.edu>
To:        news@technotronic.com, bugtraq@securityfocus.com, freebsd-security@FreeBSD.ORG
Subject:   Re: explanation and code for stream.c issues
Message-ID:  <4.2.0.58.20000121113943.012a8f10@students.uiuc.edu>
In-Reply-To: <4.2.0.58.20000121112253.012a8f10@students.uiuc.edu>

next in thread | previous in thread | raw e-mail | index | archive | help
At 11:25 AM 1/21/2000, Tim Yardley wrote:
>stream.c issues
>
>---------------------------------------------------
>:: temp remedy (exec summary)
>---------------------------------------------------
>
>If you use ipfilter...
>
>-- start rule set --
>block in quick proto tcp from any to any head 100
>pass in quick proto tcp from any to any flags S keep state group 100
>pass in all
>-- end rule set --
>
>That will help you "stop" the attack, although it will still use some CPU 
>though
>
>Note: If you use IPFW, there is no immediate way to solve this problem due 
>to the fact that it is a stateless firewall.  If you are getting attacked, 
>then temporarily use ipfilter to stop it.
>
>Otherwise, wait for vendor patches.
>
>FreeBSD "unofficial patch" by Alfred Perlstein: 
>http://www.freebsd.org/~alfred/tcp_fix.diff

<snip>

>-- start stream.c --

<snip>

>   packet.tcp.th_flags           = 0;

change this to a little different effect:

packet.tcp.th_flags             = TH_ACK;

<snip>

/tmy


-- Diving into infinity my consciousness expands in inverse
    proportion to my distance from singularity

+--------  -------  ------  -----  ---- --- -- ------ --------+
|  Tim Yardley (yardley@uiuc.edu)	
|  http://www.students.uiuc.edu/~yardley/
+--------  -------  ------  -----  ---- --- -- ------ --------+




To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-security" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?4.2.0.58.20000121113943.012a8f10>