Introduction
In this tutorial we learn how to install apple-bleee
on Kali Linux.
What is apple-bleee
apple-bleee is:
This package contains experimental scripts. They are PoCs that show what an
attacker get from Apple devices if they sniff Bluetooth traffic.
To use these scripts you will need a Bluetooth adapter for sending BLE
messages and Wi-Fi card supporting active monitor mode with frame injection for
communication using AWDL (AirDrop).
There are three methods to install apple-bleee
on Kali Linux. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install apple-bleee Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install apple-bleee
using apt-get
by running the following command:
sudo apt-get -y install apple-bleee
Install apple-bleee Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install apple-bleee
using apt
by running the following command:
sudo apt -y install apple-bleee
Install apple-bleee Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install apple-bleee
using aptitude
by running the following command:
sudo aptitude -y install apple-bleee
How To Uninstall apple-bleee on Kali Linux
To uninstall only the apple-bleee
package we can use the following command:
sudo apt-get remove apple-bleee
Uninstall apple-bleee And Its Dependencies
To uninstall apple-bleee
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove apple-bleee
Remove apple-bleee Configurations and Data
To remove apple-bleee
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge apple-bleee
Remove apple-bleee configuration, data, and all of its dependencies
We can use the following command to remove apple-bleee
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge apple-bleee
Dependencies
apple-bleee have the following dependencies:
- python3-bluez
- python3-bs4
- python3-ctypescrypto
- python3-fleep
- python3-libarchive-c
- python3-netifaces
- python3-pil
- python3-prettytable
- python3-pycryptodome
- python3-requests
- python3
References
Summary
In this tutorial we learn how to install apple-bleee
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.