# Install libssl-dev
sudo apt-get -y install libssl-dev
# Download and install aircrack
wget http://download.aircrack-ng.org/aircrack-ng-1.2-beta1.tar.gz
tar -zxvf aircrack-ng-1.2-beta1.tar.gz
cd aircrack-ng-1.2-beta1
make
sudo make install
# Update oui file
sudo airodump-ng-oui-update
# Install iw
sudo apt-get install iw
Created
December 6, 2013 16:27
-
-
Save AdamMagaluk/7827668 to your computer and use it in GitHub Desktop.
Rasberry Pi Setup
**Rasp:7.26.13
- Plug ethernet in.
- Scan for new devices with nmap
- login to raspberry with pi:raspberry through ssh
sudo nano /etc/network/interfaces
auto lo
iface lo inet loopback
iface eth0 inet dhcp
auto wlan0
iface wlan0 inet static
address 192.168.1.5
netmask 255.255.255.0
gateway 192.168.1.1
wpa-conf /etc/wpa.conf
sudo nano /etc/wpa.conf
network={
ssid="CHANGE_THIS_ESSID"
proto=RSN
key_mgmt=WPA-PSK
pairwise=CCMP TKIP
group=CCMP TKIP
psk="CHANGE_THIS_PASSWORD"
}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment