How To Install metagoofil on Kali Linux
Introduction
In this tutorial we learn how to install metagoofil on Kali Linux.
What is metagoofil
metagoofil is:
Metagoofil is an information gathering tool designed for extracting metadata of public documents (pdf,doc,xls,ppt,docx,pptx,xlsx) belonging to a target company.
Metagoofil will perform a search in Google to identify and download the documents to local disk. Metagoofil does no longer extract the metadata. See /usr/share/doc/metagoofil/README.md.gz.
There are three methods to install metagoofil 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 metagoofil Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install metagoofil using apt-get by running the following command:
sudo apt-get -y install metagoofilInstall metagoofil Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install metagoofil using apt by running the following command:
sudo apt -y install metagoofilInstall metagoofil 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 metagoofil using aptitude by running the following command:
sudo aptitude -y install metagoofilHow To Uninstall metagoofil on Kali Linux
To uninstall only the metagoofil package we can use the following command:
sudo apt-get remove metagoofilUninstall metagoofil And Its Dependencies
To uninstall metagoofil and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove metagoofilRemove metagoofil Configurations and Data
To remove metagoofil configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge metagoofilRemove metagoofil configuration, data, and all of its dependencies
We can use the following command to remove metagoofil configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge metagoofilDependencies
metagoofil have the following dependencies:
References
Summary
In this tutorial we learn how to install metagoofil package on Kali Linux using different package management tools: apt, apt-get and aptitude.