Introduction: GhostTrack is an open-source OSINT tool for tracking locations or mobile numbers, ideal for information gathering. Version 2.2 brings performance improvements and better compatibility, perfect for penetration testing and research.

Disclaimer: This tool is for educational and authorized use only. Tracking others without permission is illegal; comply with local laws.



Installation Steps (Linux/Debian, e.g., )

Prerequisites

Install Git and Python3:


sudo apt-get install git -y
sudo apt-get install python3 -y

Option 1: Direct Install

Clone and run directly:


git clone https://github.com/HunxByts/GhostTrack.git
cd GhostTrack
pip3 install -r requirements.txt
python3 GhostTR.py

Option 2: Using Virtual Environment (Recommended for Isolation)

Create a venv to avoid dependency issues:


sudo apt install python3-venv -y
cd ~/Toolkit/GhostTrack  # Or your directory
python3 -m venv venv
source venv/bin/activate
pip install --upgrade pip
pip install -r requirements.txt
python GhostTR.py
deactivate

Tip: After activation, your prompt changes. Run deactivate to exit.

Usage Tips

  • Enter target phone number or location query.
  • Supports multiple APIs, outputs include coordinates, ISP, etc.

GhostTrack is lightweight and efficient – quick to deploy!