Ip Tracker is a cli tool. It is a bash script which can be used to find the location, coordinates and ISP of an IP address. This can be used in any Linux and Termux based environments.
It uses ip-api to get the details.
API Link: https://ip-api.com/
First 2 commands should be used if git is not installed in the system. Otherwise, you can directly begin from the 3rd command.
-
sudo apt update
-
sudo apt install git -y
-
git clone https://github.com/souparnadutta/ip-tracker.git
-
cd ip-tracker
-
chmod +x track_ip.sh
You can either enter an IP Address or a domain name (Eg: google.com ,facebook.com,worldwildlife.org , basically without the http,www stuff and and anything after the domain name)
The following line shows the syntax to be used in the script. You can copy the examples for demo purposes and then play around by entering different ip addresses and domain names.
Usage: ./track_ip.sh IP_ADDRESS or Usage: ./track_ip.sh DOMAIN_NAME
Example-1: ./track_ip.sh 8.8.8.8
Example-2: ./track_ip.sh google.com