How To Install maltego-teeth on Kali Linux
Introduction
In this tutorial we learn how to install maltego-teeth on Kali Linux.
What is maltego-teeth
maltego-teeth is:
A set of transforms for Maltego to run nmap, sqlmap, and more against entitites in Maltego.
There are three methods to install maltego-teeth 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 maltego-teeth Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install maltego-teeth using apt-get by running the following command:
sudo apt-get -y install maltego-teethInstall maltego-teeth Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install maltego-teeth using apt by running the following command:
sudo apt -y install maltego-teethInstall maltego-teeth 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 maltego-teeth using aptitude by running the following command:
sudo aptitude -y install maltego-teethHow To Uninstall maltego-teeth on Kali Linux
To uninstall only the maltego-teeth package we can use the following command:
sudo apt-get remove maltego-teethUninstall maltego-teeth And Its Dependencies
To uninstall maltego-teeth and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove maltego-teethRemove maltego-teeth Configurations and Data
To remove maltego-teeth configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge maltego-teethRemove maltego-teeth configuration, data, and all of its dependencies
We can use the following command to remove maltego-teeth configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge maltego-teethDependencies
maltego-teeth have the following dependencies:
- maltego
- metasploit-framework
- nmap
- python3
- python3-adns
- python3-bs4
- python3-easygui
- python3-levenshtein
- python3-mechanize
- python3-metaconfig
- python3-msgpack
- sqlmap
References
Summary
In this tutorial we learn how to install maltego-teeth package on Kali Linux using different package management tools: apt, apt-get and aptitude.