HunxByts/GhostTrack
GhostTrack is an open-source OSINT (Open Source Intelligence) toolkit written in Python that bundles three reconnaissance modules into a single command-line tool: IP tracker, phone number tracker, and social-media username tracker. The IP module geolocates addresses and is compatible with the Seeker tool for richer location data; the phone module extracts metadata associated with international phone numbers (carrier, country, region, line type); and the username module searches across major social platforms to find accounts tied to a given handle. The tool is designed for pentesters, threat hunters, and information-gathering workflows and runs on Debian-based Linux distributions as well as Termux on Android, making it portable for field reconnaissance on a phone. Installation is a standard git clone plus pip install of the requirements.txt, after which a single `python3 GhostTR.py` entry point launches an interactive menu. The project is 100% Python (current version 2.2) and is widely used in the Termux/OSINT community with nearly 10,000 GitHub stars. Topics covered include OSINT, phone-number lookup, IP geolocation, username enumeration, and general information gathering.
git clone https://github.com/HunxByts/GhostTrack.git
Quick Start Example
# Linux (Debian-based)
sudo apt-get install git python3
git clone https://github.com/HunxByts/GhostTrack.git
cd GhostTrack
pip3 install -r requirements.txt
python3 GhostTR.py
# Termux (Android)
pkg install git python3
git clone https://github.com/HunxByts/GhostTrack.git
cd GhostTrack
pip3 install -r requirements.txt
python3 GhostTR.py