How To Install wifite on Kali Linux
Introduction
In this tutorial we learn how to install wifite on Kali Linux.
What is wifite
wifite is:
Wifite is a tool to audit WEP or WPA encrypted wireless networks. It uses aircrack-ng, pyrit, reaver, tshark tools to perform the audit.
This tool is customizable to be automated with only a few arguments and can be trusted to run without supervision.
There are three methods to install wifite 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 wifite Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install wifite using apt-get by running the following command:
sudo apt-get -y install wifiteInstall wifite Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install wifite using apt by running the following command:
sudo apt -y install wifiteInstall wifite 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 updateAfter updating apt database, We can install wifite using aptitude by running the following command:
sudo aptitude -y install wifiteHow To Uninstall wifite on Kali Linux
To uninstall only the wifite package we can use the following command:
sudo apt-get remove wifiteUninstall wifite And Its Dependencies
To uninstall wifite and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove wifiteRemove wifite Configurations and Data
To remove wifite configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge wifiteRemove wifite configuration, data, and all of its dependencies
We can use the following command to remove wifite configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge wifiteDependencies
wifite have the following dependencies:
References
Summary
In this tutorial we learn how to install wifite package on Kali Linux using different package management tools: apt, apt-get and aptitude.