Skip to content

Instantly share code, notes, and snippets.

@rahman541
Last active February 15, 2017 20:56
Show Gist options
  • Save rahman541/53990215c5b1d5ec8994022c2351f075 to your computer and use it in GitHub Desktop.
Save rahman541/53990215c5b1d5ec8994022c2351f075 to your computer and use it in GitHub Desktop.

Introduction

Setup intended for Raspian OS

Install Aircrack-ng

# Install required library
sudo apt-get -y install libssl-dev
wget http://download.aircrack-ng.org/aircrack-ng-1.2-rc4.tar.gz
tar -zxvf aircrack-ng-1.2-rc4.tar.gz
cd aircrack-ng-1.2-rc4
make
sudo make install
sudo airodump-ng-oui-update
# Optional
apt-get -y install iw

Install John The Ripper

wget http://www.openwall.com/john/j/john-1.8.0.tar.gz
tar -zxvf john-1.8.0.tar.gz
cd john-1.8.0.tar.gz
# The rest follow this tutorial: http://blog.aeai.dk/?p=994
make generic
cd ..
cd run
./john

Install Nautilus

A file manager that also come with FTP client to connect to FTP server.

sudo apt-get install nautilus

Ftp

  1. Goto Connec to server in sidebar menu
  2. Enter server address like so ftp://<server_ip_address>
  3. Click connect button
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment