Skip to content

Instantly share code, notes, and snippets.

@DGZN
Last active October 27, 2022 17:24
Show Gist options
  • Save DGZN/2412fea5365ab90551e3371fadb898a7 to your computer and use it in GitHub Desktop.
Save DGZN/2412fea5365ab90551e3371fadb898a7 to your computer and use it in GitHub Desktop.
Bash WiFi Hacking Tools on Raspberry Pi
echo "INSTALLING UTILITIES"
sudo apt-get update
cd ~/
wget http://http.us.debian.org/debian/pool/main/libx/libxcrypt/libxcrypt1_2.4-3.1_armhf.deb
wget http://http.us.debian.org/debian/pool/main/libx/libxcrypt/libxcrypt-dev_2.4-3.1_armhf.deb
dpkg -I libxcrypt1_2.4-3.1_armhf.deb libxcrypt-dev_2.4-3.1_armhf.deb
sudo apt-get install -y build-essential libpcap-dev libssl-dev git curl zlib1g-dev subversion openssl libreadline6-dev git-core zlib1g libssl-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt-dev autoconf automake libtool bison xterm
git clone https://github.com/joswr1ght/asleap
cd asleap/
make
sudo cp asleap /usr/sbin/
cd ~/
git clone https://github.com/ZerBea/hcxdumptool.git
sudo apt install libpcap-dev
sudo apt-get install
make
sudo make install
git clone https://github.com/ZerBea/hcxtools.git
cd hcxtools
make
sudo make install
echo "INSTALLING SSLSTRIP, AIRCRACK PIXIEWPS DSNIFF, BULLY, ETTERCAP & DHCP SERVER"
apt-get -y install sslstrip aircrack-ng pixiewps dsniff isc-dhcp-server ettercap-graphical
git clone https://github.com/aanarchyy/bully
cd bully*/
cd src/
make
#echo "INSTALLING RASPAP [raspap.com]"
#curl -sL https://install.raspap.com | bash
echo "INSTALLING AIRGEDDON"
git clone --depth 1 https://github.com/v1s1t0r1sh3r3/airgeddon.git
cd airgeddon
sudo bash airgeddon.sh
@morrigangirl
Copy link

@DGZN
Copy link
Author

DGZN commented Jan 29, 2021

Need to add the following to the beginning for buster (xcrypt deprecated apparently)

wget http://http.us.debian.org/debian/pool/main/libx/libxcrypt/libxcrypt1_2.4-3.1_armhf.deb
wget http://http.us.debian.org/debian/pool/main/libx/libxcrypt/libxcrypt-dev_2.4-3.1_armhf.deb
dpkg -I armhv.deb

👍 Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment