Install Phoneinfoga In Kali Linux Today
version: 2.10.0 numverify: api_key: "YOUR_API_KEY_HERE" enabled: true You can obtain a free Numverify API key from numverify.com (limited to 100 requests/month). Save the file after editing. Once installed, using PhoneInfoga is straightforward. Remember that unethical use against individuals without consent is illegal. Command Structure phoneinfoga scan -n <PHONE_NUMBER> Example: National Format (US) phoneinfoga scan -n "14155552671" Example: International Format Always use the international format with the country code:
phoneinfoga serve -p 8080 Then open your browser to http://127.0.0.1:8080 . You can paste numbers into a web form and see formatted results. Even with careful steps, problems occur. Here are the most frequent pitfalls. Error 1: go: command not found Solution: Go is not installed or not in your PATH. Re-run sudo apt install golang-go -y and restart your terminal. Error 2: cannot find package "github.com/..." Solution: Go modules are disabled or misconfigured. Inside the source directory, run:
phoneinfoga version Expected output: PhoneInfoga version v2.10.x (build from source) If you don’t want to compile from source, the project releases precompiled binaries for Linux (amd64/arm64). This method is faster but may be slightly behind the bleeding edge. Step 1: Download the Latest Release Visit the official releases page on GitHub, or use wget directly: install phoneinfoga in kali linux
wget https://github.com/sundowndev/phoneinfoga/releases/download/v2.10.5/phoneinfoga_Linux_x86_64.tar.gz Note: Replace v2.10.5 with the latest version found on the releases page. tar -xzf phoneinfoga_Linux_x86_64.tar.gz Step 3: Install and Set Permissions chmod +x phoneinfoga sudo mv phoneinfoga /usr/local/bin/ Step 4: Test the Installation phoneinfoga --help The help menu should appear, listing commands like scan , serve , and version . Post-Installation: Configuration and Setup PhoneInfoga works reasonably well out-of-the-box, but certain features require API keys (e.g., for Numverify, Google dorking). Create a configuration file to maximize effectiveness. Generate a Default Configuration phoneinfoga config init This creates ~/.config/phoneinfoga/config.yaml . Edit it to add your API keys:
sudo dd if=/dev/zero of=/swapfile bs=1M count=2048 sudo mkswap /swapfile sudo swapon /swapfile PhoneInfoga is powerful alone, but truly shines when combined with other Kali Linux tools. 1. Automate with Recon-ng Create a Recon-ng script that feeds numbers into PhoneInfoga via the command line. 2. Pipe into Sherlock (Username Search) If PhoneInfoga finds a Google profile, you can extract the username and run Sherlock to find other social media accounts: version: 2
Introduction: What is PhoneInfoga? In the world of open-source intelligence (OSINT), PhoneInfoga has established itself as a powerful, essential tool for reconnaissance. It is one of the most advanced frameworks designed to scan phone numbers using only free resources. The tool allows security researchers, penetration testers, and law enforcement to gather valuable information such as carrier, line type (landline, VoIP, mobile), country, and even linked accounts on services like Google, Instagram, and Skype.
phoneinfoga scan -n "+1234567890" | grep "Username" | sherlock Redirect PhoneInfoga output to a file for later analysis: Even with careful steps, problems occur
sudo apt install golang-go -y Verify the installation: