Skip to content

Instantly share code, notes, and snippets.

@dnavarrom
Created February 3, 2019 20:02
Show Gist options
  • Save dnavarrom/0aeb77b9d850fede0b59f2193c9e6896 to your computer and use it in GitHub Desktop.
Save dnavarrom/0aeb77b9d850fede0b59f2193c9e6896 to your computer and use it in GitHub Desktop.
#### This will install Fluxion on Linux Mint 19
# REMOVE OLD AIRCRACK AND COMPILE NEW VERSION
sudo apt remove aircrack-ng
sudo apt install autoconf automake libpcre3-dev libnl-3-dev libsqlite3-dev libssl-dev ethtool build-essential g++ libnl-genl-3-dev libgcrypt20-dev libtool python3-distutils
sudo apt install -y pkg-config
git clone https://github.com/aircrack-ng/aircrack-ng.git
cd aircrack-ng/
autoreconf -i
./configure --with-experimental --with-ext-scripts
make
sudo make install
sudo airodump-ng-oui-update
sudo ldconfig
# up
cd ..
# INSTALL MDK3
sudo apt-get install git build-essential
git clone https://github.com/charlesxsh/mdk3-master.git
cd mdk3-master
make
sudo make install
# up
cd ..
# INSTALL COWPATTY
sudo apt install libpcap-dev
wget http://www.willhackforsushi.com/code/cowpatty/4.6/cowpatty-4.6.tgz
tar xvzf cowpatty-*.tgz
cd cowpatty*
make
sudo make install
# up
cd ..
# CLEANING
rm -rf mdk3-master/ aircrack-ng/ cowpatty-*
# INSTALL FLUXION
git clone https://github.com/FluxionNetwork/fluxion
cd fluxion/
sudo ./fluxion.sh -i
# RUN
sudo ./fluxion.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment