"David Efflandt" <(E-Mail Removed)> schrieb im Newsbeitrag
news:(E-Mail Removed)...
> Ping itself can be used for certain DoS attacks by spoofing the return
> address, so you do not know where it comes from, and your system will
> repeatedly attempt to answer it to an IP that did not request it.
These kind of attack can be controlled by using the -m limit options,
can't it? A rule can be created which accepts just one echo-request
and drops any following from same IP.
> Some worms use ping to find IPs to attempt to attack, so dropping ping can
> slow those up and minimize those from attempting further attack on you.
When there are no open ports to connect to, why shouldn't they know
I'm here
> Dropping all packets you do not want to accept (not responding to SYN)
> should slow up those crack attempts and prevent any actual attempt to
> connect. But ident (113) is one port that is better rejected than
> dropped, because things that may use it like smtp and icq will connect
> faster if there is a response (accepted or rejected) than timeout waiting
> for SYN response (dropped).
Well I was pointed to a discussion like this on some unix.misc newsgroup and
they said something about RFC-conformity of network traffic. If you want
to stay conform, you just have to RST closed tcp-ports and answer
"destination-unreachable" on closed udp-ports.
Putting it all together:
RSTing and limiting (SYN-flood) incoming connection-request
will not be any security-disadvantage in comparison with DROPing?
daniel