BOOPSUITE – Wireless Network Toolkit Designed as Aircrack-ng Suite

Welcome back Hackers! Aircrack-ng is a complex complete packages suite of tools to audit Wireless network security. Aircrack-ng suite cover all areas of Wi-Fi security, such monitoring, attacking, and cracking. All tools are based on command line interface, which cause a heavy scripting command. Aircrack-ng suite covers:
- Monitoring : Capturing packet, traffics all around us and export the data to text file for further assesment.
- Attacking : Deauth attack, replay attack, fake AP and others packet injection kind of attacks.
- Cracking : Aircrack is aimed to crack WEP and WPA PSK Wi-Fi key encryption.
As i mentioned earlier, Aircrack-ng tools is command line tools, it allows a huge scripting command on terminal. But, luckily, a guy on Github share his project which he claimed his tool designed to simplify aircrack-ng functionality. It is BOOPSUITE. I am interesting about his work and in this post i will test it. Boopsuite is written in python, it is come with two flavor, conman line and GUI version. I prefer to command line rather its GUI.
STEP 1 : INSTALL BOOPSUITE
Open terminal and run these following commands to download and install Boopsuite into your Kali Linux.
git clone https://github.com/M1ND-B3ND3R/BoopSuite.git cd BoopSuite sudo pip install -r requirements.txt chmod +x install.py ./install.py
STEP 2: IDENTIFY BOOPSUITE TOOLS
Because it is designed as like aircrack-ng suite, boopsuite also build with various tools for different kind of work like aircrack-ng suite too, it is: boop, boopsniff, boopsniff_gui and boopstrike.
STEP 3: BOOP!
Boop role is to manage the interfaces, act like airmon-ng i guess. Boop are able to change interfaces mode, killing interferin tasks, set specific monitor card name, and set card channel.
- SET TO MONITOR MODE
it will set wlan1 interface into monitor mode
boop -i wlan1
- SET TO MANAGED MODE
it will set wlan1mon interface from monitor into managed mode
boop -i wlan1mon
as simple as that right?
- CREATE NEW MONITOR INTERFACE WITH SPECIFIC NAME
it will create new monitor mode interface, as we want to name it. here boop create interface “TAI” as monitor mode.
boop -i wlan1 -n tai
- CREATE NEW MONITOR INTERFACE WITH SPECIFIC CHANNEL
it will create a new monitor mode interface with specific channel.
boop -i wlan1 -c 9
- KILL ANY INTERFERING TASKS
it act the same as “airmon-ng check kill”
boop -i wlan1 -k
- PUT ALL COMMANDS TOGETHER
boop -i wlan1 -n taimon -c 9 -k
STEP 4: BOOPSNIFF
- START TO SNIFF
boopsniff -i taimon
- SNIFF SPECIFIC CHANNEL
boopsniff -i taimon -c 9
- SNIFF 5GHz WIRELESS FREQUENCY
it sniff on 5GHz spectrum or frequency, make sure you have a supporting card.
boofsniff -i taimon -f 5
- SNIFF UNASSOCIATED CLIENTS
boopsniff -i taimon -u
- SNIFF SPECIFIC AP MAC ADDRESS
boopsniff -i taimon -a xx:xx:xx:yy:yy:yy
STEP 4: BOOPSTRIKE
This tool act like aireplay-ng, boopstrike is able to:
- LAUNCH DEAUTH ATTACK
it will launch deauth attack on all channels.
boopstrike -i taimon
- DEAUTH SINGLE AP
boopstrike -i taimon -a xx:xx:xx:yy:yy:yy
- DEAUTH ALL EXCEPT ONE AP
boopstrike -i taimon -s xx:xx:xx:yy:yy:yy
For the next upcoming project to improve boop, the developer will add more tools, some of those are:
- BoopCoil – Deauth attack detector
- BoopDate – BoopSuite updater