Arp Firewall

d
Autor: @kmlreverser
Descripción: Por si alguien esta sacando provecho a la red wifi del vecino.Por cierto tambien bloquea los ataques Man in the middle
(Necesita tener instalado arptables)


#!/bin/bash

#Arp Firewall

case "$1" in
start)
sudo arptables -P INPUT DROP
sudo arptables -P OUTPUT ACCEPT
sudo echo "La Proteccion ARP está Activada"
;;

stop)
sudo arptables -P INPUT ACCEPT
sudo arptables -P OUTPUT ACCEPT
echo "La Proteccion ARP está Desactivada"
;;

*)
echo "Usar: /etc/init.d/blah {start|stop}"
exit 1
;;
esac

exit 0

0 comentarios: