Raspberry Pi Fake Access Point / Wifi Honey Pot Tutorial

  • 7年前
How to create a fake Wifi access point that directs all domains to your apache server with the Raspberry Pi.\r
\r
Text-Guide: \r
\r
Original Tutorial: \r
\r
PowerAdd USB Battery: \r
\r
Raspberry Pi Cana Kit: \r
\r
:: hostapd.conf ::\r
\r
interface=wlan0\r
driver=nl80211\r
ssid=Tutorial Access Point\r
channel=1\r
\r
:: DNSMasq (Bottom Of File) ::\r
\r
address=/#/10.0.0.1\r
interface=wlan0\r
dhcp-range=10.0.0.10,10.0.0.250,12h\r
no-resolv\r
\r
:: /etc/network/interfaces ::\r
\r
auto lo\r
\r
iface lo inet loopback\r
iface eth0 inet dhcp\r
\r
iface wlan0 inet static\r
address 10.0.0.1\r
netmask 255.255.255.0\r
broadcast 255.0.0.0

推荐视频