Created
February 3, 2019 20:02
-
-
Save dnavarrom/0aeb77b9d850fede0b59f2193c9e6896 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#### 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