dinho_abreu
(usa Debian)
Enviado em 10/02/2014 - 08:05h
Buckminster escreveu:
#bloqueio Anti-Spoofings
$IPTABLES -A INPUT -s 10.0.0.0/8 -i $WAN -j DROP
$IPTABLES -A INPUT -s 127.0.0.0/8 -i $WAN -j DROP
$IPTABLES -A INPUT -s 172.16.0.0/12 -i $WAN -j DROP
$IPTABLES -A INPUT -s 192.168.1.0/16 -i $WAN -j DROP
echo "ativado o bloqueio de tentativa de ataque do tipo Anti-spoofings"
echo "ON .................................................[ OK ]"
Faça um teste. Comente as regras acima, reinicie o firewall e teste as portas.
Teste feito, e nada
Seguei ate comentar algumas linhas a mais,
Continua a mesma coisa com as portas bloqueadas.
Linha comentadas
#Bloqueio ping da morte
#echo "0" > /proc/sys/net/ipv4/icmp_echo_ignore_all
#$IPTABLES -N PING-MORTE
#$IPTABLES -A INPUT -p icmp --icmp-type echo-request -j PING-MORTE
#$IPTABLES -A PING-MORTE -m limit --limit 1/s --limit-burst 4 -j RETURN
#$IPTABLES -A PING-MORTE -j DROP
#echo "ativado o bloqueio a tentativa de ataque do tipo ping da morte"
#echo "ON .................................................[ OK ]"
#bloquear ataque do tipo SYN-FLOOD
#echo "0" > /proc/sys/net/ipv4/tcp_syncookies
#$IPTABLES -N syn-flood
#$IPTABLES -A INPUT -i $WAN -p tcp --syn -j syn-flood
#$IPTABLES -A syn-flood -m limit --limit 1/s --limit-burst 4 -j RETURN
#$IPTABLES -A syn-flood -j DROP
#echo "ativado o bloqueio a tentativa de ataque do tipo SYN-FLOOD"
#echo "ON .................................................[ OK ]"
#Bloqueio de ataque ssh de força bruta
#$IPTABLES -N SSH-BRUT-FORCE
#$IPTABLES -A INPUT -i $WAN -p tcp --dport 22 -j SSH-BRUT-FORCE
#$IPTABLES -A SSH-BRUT-FORCE -m limit --limit 1/s --limit-burst 4 -j RETURN
#$IPTABLES -A SSH-BRUT-FORCE -j DROP
#echo "ativado o bloqueio a tentativa de ataque do tipo SSH-BRUT-FORCE"
#echo "ON .................................................[ OK ]"
#bloqueio Anti-Spoofings
#$IPTABLES -A INPUT -s 10.0.0.0/8 -i $WAN -j DROP
#$IPTABLES -A INPUT -s 127.0.0.0/8 -i $WAN -j DROP
#$IPTABLES -A INPUT -s 172.16.0.0/12 -i $WAN -j DROP
#$IPTABLES -A INPUT -s 192.168.1.0/16 -i $WAN -j DROP
#echo "ativado o bloqueio de tentativa de ataque do tipo Anti-spoofings"
#echo "ON .................................................[ OK ]"
#Bloqueio de scanners ocultos (Shealt Scan)
#$IPTABLES -A FORWARD -p tcp --tcp-flags SYN,ACK, FIN, -m limit --limit 1/s -j ACCEPT
#echo "bloqueado scanners ocultos"
#echo "ON .................................................[ OK ]"