"I use the scanner through a firewall! It is a Linux machine with kernel 2.4.1. If you have acces to your router and its a linux machine with kernel 2.2.x you can fix it when you type: ipchains -F ipchains -P input ACCEPT ipchains -P output ACCEPT ipchains -P input MASQ! This is the radical method and breaks all security policies ! After that the metwork scanner works behind as good as before. If you want some security try bedder rules, this one are mine: ipchains -F ipchains -P input REJECT ipchains -A input -j ACCEPT -i lo ipchains -A input -s 192.168.0.0/255.255.0.0 -j ACCEPT -i eth0 ipchains -A input -p icmp -j ACCEPT ipchains -A input -p tcp --dport 22 -j ACCEPT ipchains -A input -p tcp --dport 80 -j ACCEPT ipchains -A input -p tcp --dport 21 -j ACCEPT ipchains -A input -p tcp -s ! 192.168.0.0/255.255.0.0 --dport 0:1023 -j REJECT ipchains -A input -p udp -s ! 192.168.0.0/255.255.0.0 --dport 0:1023 -j REJECT ipchains -A input -p tcp -s ! 192.168.0.0/255.255.0.0 --dport 1024: -y -j REJECT ipchains -A input -p tcp -s ! 192.168.0.0/255.255.0.0 --dport 1024: -j ACCEPT ipchains -A input -p udp -s ! 192.168.0.0/255.255.0.0 --dport 1024: -j ACCEPT ipchains -P forward REJECT ipchains -A forward -s 192.168.0.0/255.255.0.0 -d ! 192.168.0.0/255.255.0.0 -j MASQ ipchains -A forward -s 192.168.0.0/255.255.0.0 -d 192.168.0.0/255.255.0.0 -j ACCEPT ipchains -P output ACCEPT". Could you please explain how to use all of you have written?. Will i have to write it on a msdos prompt?. Is it compiled in a program?. Is it just for LInux users (i have W98)?. What are the benefits of using it?. Will bypass any firewall?. If i bypass the firewall could i use a trojan?. What can i do?. Thank you.
|