Geo-Recon in Termux – Installation Commands & Usage

Geo-Recon is a simple OSINT and geolocation reconnaissance tool that shows IP geolocation details, network information, and reconnaissance data. It is simple and easy to use, and you can run it in the Termux terminal application on Android just by using some simple installation and usage commands.

Installation Commands

Update Termux packages:

pkg update && pkg upgrade -y

Install required packages:

pkg install nmap git python -y

Clone Geo-Recon repository:

git clone https://github.com/radioactivetobi/geo-recon

Go to Geo-Recon directory:

cd geo-recon

Install required dependencies:

pip install colorama requests

Run Geo-Recon:

python geo-recon.py

Usage Commands

Display help menu:

python3 geo-recon.py -h

Get information about a target IP:

python3 geo-recon.py 142.251.43.46

Run IP scan with Nmap:

python3 geo-recon.py 142.251.43.46 -n

Display available commands:

python3 geo-recon.py -c

Get information about your own IP:

python3 geo-recon.py localhost

Get your IP information with Nmap scan:

python3 geo-recon.py localhost -n
READ ALSO  How to create Ngrok authtoken - Free | Termux | 2026

Leave a Comment