Hi,
I'm using iptable as my firewall/router. I went to those website ( that checks your anonymity and they displayed my entire C drive on the website. Which port do I need to close in order to prevent this from happening? I want to block it at the firewall.
I don't want to disable my javascripts or JVM because that's only protects only one machine.
my firewall script
modprobe iptable_nat
myiptable=/sbin/iptables
$myiptable -t nat -A POSTROUTING -o eth0 -j MASQUERADE
$myiptable -A INPUT -i eth0 -p tcp --dport 0:60000 -j DROP
$myiptable -A INPUT -p tcp --tcp-flags SYN,ACK,FIN SYN -j DROP
$myiptable -A INPUT -i eth0 -p udp --dport 0:60000 -j DROP
$myiptable -A INPUT -i eth0 -p icmp -j DROP
Thanks for any advice
T.
%-)
I'm using iptable as my firewall/router. I went to those website ( that checks your anonymity and they displayed my entire C drive on the website. Which port do I need to close in order to prevent this from happening? I want to block it at the firewall.
I don't want to disable my javascripts or JVM because that's only protects only one machine.
my firewall script
modprobe iptable_nat
myiptable=/sbin/iptables
$myiptable -t nat -A POSTROUTING -o eth0 -j MASQUERADE
$myiptable -A INPUT -i eth0 -p tcp --dport 0:60000 -j DROP
$myiptable -A INPUT -p tcp --tcp-flags SYN,ACK,FIN SYN -j DROP
$myiptable -A INPUT -i eth0 -p udp --dport 0:60000 -j DROP
$myiptable -A INPUT -i eth0 -p icmp -j DROP
Thanks for any advice
T.
%-)