All     Ethical Hacking     Networking     Programming     OSINT

PhoneInfoga in Termux – Installation, Usage & Basic Commands

PhoneInfoga is an OSINT tool used to gather information about phone numbers using public sources. It can collect country details, carrier information, formats, and online footprints related to a phone number.

Installation

Update Termux and install required packages:

pkg update && pkg upgrade && pkg install python git -y

Clone the PhoneInfoga repository:

git clone https://github.com/ExpertAnonymous/PhoneInfoga.git

Move into the PhoneInfoga directory:

cd PhoneInfoga

Fix urllib3 compatibility issue (important):

pip uninstall urllib3 && pip install "urllib3<2"

Install Python dependencies:

pip install -r requirements.txt

Make PhoneInfoga globally accessible:

chmod +x phoneinfoga.py && ln -s $PWD/phoneinfoga.py $PREFIX/bin/phoneinfoga

Verify global installation:

phoneinfoga --help

Usage Commands

Scan a phone number (with country code):

phoneinfoga -n +919876543210

Use local scan only:

phoneinfoga -n +919876543210 -s local

Use all available sources:

phoneinfoga -n +919876543210 -s all

Save results to a file:

phoneinfoga -n +919876543210 -o result.txt

Show help menu:

phoneinfoga --help