Skip to content

Konstantinos-Papanagnou/PhoneInformationTracer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PhoneInformationTracer

Installation Tips

Note: On termux installation through the setup script is not adviced

Linux

This script is written in python3 so python3 is required.

Clone the git repository to your local machine.

git clone https://github.com/Konstantinos-Papanagnou/PhoneInformationTracer.git

Install the phonenumbers library from pip

pip install phonenumbers

or use pip3 in case you have both python2 and python3 install on your system

pip3 install phonenumbers

If you want to add it to your path simply run chmod +x setup.sh and sudo ./setup.sh.

Everything is set! Now you can fire up the script.

Windows

In order to run this script on windows, download the repository to your computer and make sure you have python3 installed or anaconda.

Install phonenumbers library

pip install phonenumbers

Install argparse library

pip install argparse

Everything is set! Now you can fire up the script.

Usage

============================================================
Welcome to Phone Information Tracer made by Konstantinos Pap
============================================================
usage: PhoneInformationTracer.py [-h] [-i INPUT] [-cc COUNTRY_CODE] [-v] [-l LIST] [-o OUTPUT]

optional arguments:
  -h, --help            show this help message and exit
  -i INPUT, --input INPUT
                        The Phone Number imput to Examine
  -cc COUNTRY_CODE, --country-code COUNTRY_CODE
                        The Country Code, Default=+30 (GR)
  -v, --verbose         increase output verbosity
  -l LIST, --list LIST  Specify a phone list to enumerate
  -o OUTPUT, --output OUTPUT
                        Specify a file to export the data

Usage Example:

python3 PhoneInformationTracer.py -i 6985456254

If you want to change the country code you can simply add the -cc flag and set the flag.

python3 PhoneInformationTracer.py -i 6985456254 -cc +30

Or you can pass a file to the program with phone numbers on each line and specify a output file

python3 PhoneInformationTracer.py -l input -o output

Country code by default is +30.