Open In App

IPGeoLocation – Find IP address information in Kali Linux

Improve
Improve
Like Article
Like
Save
Share
Report

IPGeoLocation is a free and open-source tool written in Python available on GitHub which is used to find information about the IP address on your Kali Linux operating system. It is used to retrieve IP Geolocation information. The tool is powered by the IP-API, which is an API used to retrieve information about IP Geolocation. This tool is written in python, so you must have python3, termcolor, colorama modules installed in your system in order to use the tool.  This tool selects a random proxy on the new line and the IP geolocation maps that IP using Google Map. You can export CSV, XML, and txt formats.

Installation 

Step 1: Open your Kali Linux operating system. Use the following command to install the tool.

git clone https://github.com/maldevel/IPGeoLocation.git

Step 2: Use the following command to move in the directory of the tool.

cd IPGeoLocation
ls

Step 3: Now the tool has been downloaded. Now you have to install the requirements using the following commands.

pip3 install -r requirements.txt --user

Step 4: Now you have to give permission to the tool using the following command.

chmod +x ipgeolocation.py

Step 3: All the requirements have been installed. To run the tool use the following commands.

./ipgeolocation.py

The tool is running successfully. Now we will see examples.

Usage

Example 1: Use the IPGeoLocation tool to know your own IP information.

./ipgeolocation.py -m 

Example 2: Use the IPGeoLocation tool to find out the geolocation information of a domain.

./ipgeolocation.py -t google.com

You can see that the tool gives all the geolocation information about the target. You can also use the geolocation tool to find your own target geolocation information.


Last Updated : 17 Jun, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads