[PhoneInfoga Tool] Advanced information gathering & OSINT tool for phone numbers
SOFTWARE
Full Installation Reference in Video Form officially By Dedsec
Credit :: Dedsec
Youtube Channel :: https://zee.gl/0AsezvD
Website :: https://zee.gl/Yp43KU9P
Video Link :: https://zee.gl/sGoC3ULH
PhoneInfoga - Download Link :: https://zee.gl/qO7FU9
About
PhoneInfoga is one of the most advanced tools to scan phone numbers using only free resources. The goal is to first gather standard information such as country, area, carrier and line type on any international phone numbers with a very good accuracy. Then search for footprints on search engines to try to find the VoIP provider or identify the owner.Installation
Clone the repository
git clone https://github.com/sundowndev/PhoneInfoga
cd PhoneInfoga/
Install requirements
python3 -m pip install -r requirements.txt --user
Create the config file
cp config.example.py config.py
To ensure everything works, use the -v
option to show the version :
python3 phoneinfoga.py -v
Install the Geckodriver
The Geckodriver is the Firefox webdriver for Selenium, which is used by PhoneInfoga to perform queries to Google search and handle captcha. Firefox is actually the only webdriver supported by PhoneInfoga. Want to hack it to use chrome or another driver instead ?
Linux
Download
Go to the geckodriver releases page. Find the latest version of the driver for your platform and download it. For example:wget https://github.com/mozilla/geckodriver/releases/download/v0.24.0/geckodriver-v0.24.0-linux64.tar.gz
Extract the file
sudo sh -c 'tar -x geckodriver -zf geckodriver-*.tar.gz -O > /usr/bin/geckodriver'
Make it executable
sudo chmod +x /usr/bin/geckodriver
Remove the archive
rm geckodriver-*.tar.gz
NOTE: You also have to install Firefox browser v65+. To verify everything is fine, be sure the following commands work:
which firefox
should return something like/usr/bin/firefox
which geckodriver
should return something like/usr/bin/geckodriver
Comments
Post a Comment