PhoneInfoga in Termux – Installation & Usage Commands

PhoneInfoga is a simple tool that helps you get information about a phone number using public data. It can show details like country, number type, timezone, and possible online links. You can easily use it on your Android phone with the help of Termux.

Installation Commands

Update Termux and install required packages:

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

Clone the PhoneInfoga repository:

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

Go to the tool directory:

cd PhoneInfoga

Run the installation script:

bash phoneinfoga.sh

Install required Python packages:

cd && cd PhoneInfoga && pip install -r requirements.txt

Fix urllib3 error (important):

pip uninstall urllib3 -y && pip install urllib3==1.26.16

Usage Commands

Run PhoneInfoga:

python phoneinfoga.py

Scan a phone number:

python phoneinfoga.py -n +911234567890

Scan multiple numbers from a file:

python phoneinfoga.py -i numbers.txt

Save output to a file:

python phoneinfoga.py -n +911234567890 -o result.txt

Use specific scanner:

python phoneinfoga.py -n +911234567890 -s any

Disable colored output:

python phoneinfoga.py -n +911234567890 --no-ansi

Show help menu:

python phoneinfoga.py -h
READ ALSO  Metasploit Framework in Termux – Installation & Usage Commands

Leave a Comment