Phunter in Termux – Phone Number Information Gathering Tool

Phunter is a phone number OSINT tool that can collect basic publicly available information about a phone number. It can check whether a number is valid, show the possible location and operator, display international and national formats, and provide carrier and line type details. Phunter also checks spam information and can process phone numbers from the Termux terminal.

Phunter Installation Commands

You can easily install Phunter in Termux using Git and Python. Simply run the commands below one by one.

Update Termux packages.

pkg update && pkg upgrade -y

Install Git and Python.

pkg install git python -y

Clone the Phunter repository.

git clone https://github.com/N0rz3/Phunter.git

Move into the Phunter directory.

cd Phunter

Install the required Python packages.

pip3 install -r requirements.txt

Phunter is now installed and ready to use.

Phunter Usage Commands

Once Phunter is installed, you can run different commands to perform phone number OSINT tasks.

Display the help menu.

python3 phunter.py -h

Get information about a phone number.

python3 phunter.py -t +919876543210

Check whether Amazon is linked to a phone number.

python3 phunter.py -a +919876543210

Search for phone number owner information.

python3 phunter.py -p +919876543210

Get information from a file containing phone numbers.

python3 phunter.py -f file.txt

Check the Phunter version, updates, and services.

python3 phunter.py -v

Save Amazon results to a file.

python3 phunter.py -a +919876543210 -o output.txt

Save owner search results to a file.

python3 phunter.py -p +919876543210 -o output.txt

End Note

Phunter is a simple phone number OSINT tool that shows basic details like the carrier, location, number format, and spam status. You can run different commands to check phone number information directly from the terminal.

READ ALSO  Quasar in Termux – Installation & Usage Commands

Leave a Comment