Ping attacking
Polite reply words: Any help gladly appreciated,Thanks.
Ping attacking contains two methods,ICMP ping and responsible ping.
1.ICMP: ICMP send ICMP ECHO REQUEST to the destination host,if the destination is running,it will response for the ICMP ECHO REPLY.
# ping -c 3 target
Parameter c means continuous and 3 is the ping times.
2.The other ping attacking method is connecting with the remote host’s responsiblity port(port 7)by UDP or TCP packages.This port will reply the sending messages from localhost directly.for example:
# telnet target.example.com echo connect to target.example.com Escape character is '^]' pack my box with five dozen liquar juys.(send from local host) pack my box with five dozen liquar juys.(reply from remote host)
Nmap: network exploratin tool and security scanner.
Proxy server:202.97.142.40
Port:3128
How to prevent ping attacking?
We could configure the ipchains/iptables to refuse those access which request ECHO REQUEST and ECHO REPLY.In the /etc/inetd.conf,recommend the following two lines will disable those ping attacking request:
# echo stream tcp nowait root internal # echo dgram udp wait root internal
And then,issue “kill – HUP inetd” to restart the inetd process for making the configuration actively.