How To Install maltego-teeth on Kali Linux

In this tutorial we learn how to install maltego-teeth on Kali Linux. maltego-teeth is Set of offensive Maltego transforms

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 update

After updating apt database, We can install maltego-teeth using apt-get by running the following command:

sudo apt-get -y install maltego-teeth

Install maltego-teeth Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install maltego-teeth using apt by running the following command:

sudo apt -y install maltego-teeth

Install 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 update

After updating apt database, We can install maltego-teeth using aptitude by running the following command:

sudo aptitude -y install maltego-teeth

How 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-teeth

Uninstall 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-teeth

Remove 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-teeth

Remove 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-teeth

Dependencies

maltego-teeth have the following dependencies:

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.