Skip to content

Instantly share code, notes, and snippets.

@AdamMagaluk
Created December 6, 2013 16:27
Show Gist options
  • Save AdamMagaluk/7827668 to your computer and use it in GitHub Desktop.
Save AdamMagaluk/7827668 to your computer and use it in GitHub Desktop.
Rasberry Pi Setup

Raspberry Aircrack Setup

# 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

Running Aircrack Monitor

Raspberry Pi Setup

**Rasp:7.26.13

  1. Plug ethernet in.
  2. Scan for new devices with nmap
  3. login to raspberry with pi:raspberry through ssh

Add Wireless

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