Wireless Army
This is a blog / tips and tricks website for web developers and security researchers.
follow us in feedly


Connect to wifi with a usb adapter
by admin
 at 2016-08-13 16:40:00.

first you want to make sure that the power that the wifi usb adapter is using is enough for wifi pineapple to power it up or you may want to use a usb hub.
then we will create afile in /etc called wpa.config with the content below:
network={
ssid=”my essid”
proto=RSN
key_mgmt=WPA-PSK
pairwise=CCMP TKIP
group=CCMP TKIP
psk=”mypass”
}
then you want to edit the file interfaces in /etc/network and replace everything with
auto lo
iface lo inet loopback

iface eth0 inet dhcp
allow hotplus wlan0
auto wlan0
iface wlan0 inet dhcp
wpa-conf /etc/wpa.config

then you should
/etc/init.d/networking restart
and if you are not connected yey just restart.