Phone Service Identifier
Need to find out which service provider a phone number is using? This Python script helps you do just that! It uses the phonenumbers` library to extract basic information like the
Description
It’s a quick, simple tool, perfect for beginners in ethical hacking or anyone exploring basic OSINT techniques.
The full Python code is below, so you can test it by yourself.
Note: This tool is for ethical purposes only. Please use it responsibly.
đŸ’¡ Required Package: Run
pip install phonenumbers
before using the script.
1
2
3
4
5
6
import phonenumbers
from phonenumbers import carrier
mobileNo = input('Enter Mobile Number With Country Code : ')
service_provider = phonenumbers.parse(mobileNo)
print(carrier.name_for_number(service_provider,"en"))
This post is licensed under CC BY 4.0 by the author.