• XSS.stack #1 – первый литературный журнал от юзеров форума

GSM Как узнать MVNO по номеру?

Решение
Hey guys,

If you need to figure out which MVNO owns a specific number in the USA, I've got some killer methods for you.

1. Get an API Key and Use NumVerify

First, sign up on NumVerify and get an API key. This gives you access to their API, which you can use to check the number.

Sample Python Code for NumVerify

Python:
import requests

api_key = 'YOUR_NUMVERIFY_API_KEY'
phone_number = 'YOUR_PHONE_NUMBER'

url = f'http://apilayer.net/api/validate?access_key={api_key}&number={phone_number}'
response = requests.get(url)

data = response.json()
print(data)


This code will give you details like country, line type, and the main carrier.

2. Use Twilio Lookup API

For this, sign up on Twilio and get an API key. Then you...
Пожалуйста, обратите внимание, что пользователь заблокирован
Привет. Есть номер USA, через чекер (например Twilio) вижу оператора. Можно ли узнать цепочку MVNO, которая владеет этим номером? Спасибо
Нейронка рулит...

Да, есть несколько способов узнать о MVNO (Mobile Virtual Network Operator), который владеет телефонным номером USA.



1. Используя API Twilio: Twilio предоставляет API для доступа к информации о номерах США. Вы можете использовать метод `lookup` из API Twilio, чтобы получить информацию о номере и его MVNO-операторе.

2. Используя базы данных Whois или ARIN (American Registry for Internet Numbers): эти организации хранят информацию о телефонных номерах США, включая их MVNO-операторов. Вы можете использовать API этих организаций для поиска информации о конкретном номере.

3. Используя сервисы lookup или databases: есть несколько коммерческих сервисов и баз данных, которые предлагают информацию о телефонных номерах США, включая их MVNO-операторы. Некоторые из них - это Numlookup, PhoneNumberDB и другие.



Например, если использовать API Twilio, вы можете выполнить запрос в следующем формате:



bash
https://xss.pro/qrc%3A/gpt4all/icons/copy.svg​
curl https://lookups.twilio.com/v2/phone-numbers/+1xxxxxxxxxx \
-X GET \
-H 'Authorization: Bearer YOUR_TWILIO_AUTH_TOKEN' \
-H 'Content-Type: application/json'

В ответе вы получите информацию о номере, включая его MVNO-оператора.



Обратите внимание, что доступность информации о MVNO может зависеть от региона и оператора. Некоторые операторы могут не раскрывать эту информацию или ограничивать доступ к ней.
 
Нейронка рулит...
1. API Twilio не показывает MVNO. https://www.twilio.com/docs/lookup/v2-api - тут Line Type Intelligence только carrier показывает, остальные методы тоже не про то
2. whois и arin это вообще про айпи
3. попробовал Numlookup - вообще левая дичь, какое-то рандомное имя владельца линии мне выдало на мой собственный номер, развод
 
Hey guys,

If you need to figure out which MVNO owns a specific number in the USA, I've got some killer methods for you.

1. Get an API Key and Use NumVerify

First, sign up on NumVerify and get an API key. This gives you access to their API, which you can use to check the number.

Sample Python Code for NumVerify

Python:
import requests

api_key = 'YOUR_NUMVERIFY_API_KEY'
phone_number = 'YOUR_PHONE_NUMBER'

url = f'http://apilayer.net/api/validate?access_key={api_key}&number={phone_number}'
response = requests.get(url)

data = response.json()
print(data)


This code will give you details like country, line type, and the main carrier.

2. Use Twilio Lookup API

For this, sign up on Twilio and get an API key. Then you can use their API to check the number.

Sample Python Code for Twilio Lookup API

Python:
import requests
from requests.auth import HTTPBasicAuth

account_sid = 'YOUR_TWILIO_ACCOUNT_SID'
auth_token = 'YOUR_TWILIO_AUTH_TOKEN'
phone_number = 'YOUR_PHONE_NUMBER'

url = f'https://lookups.twilio.com/v1/PhoneNumbers/{phone_number}'
response = requests.get(url, auth=HTTPBasicAuth(account_sid, auth_token))

data = response.json()
print(data)


This code will give you complete details about the number, including the main carrier.

3. Check SIM Card Information

If you have physical access to the SIM card for the number, check the printed information on the SIM. Sometimes the MVNO’s name or logo is printed on it.

4. Use Mobile Apps

Apps like Carrier Info for Android and Carrier Lookup for iOS can help. These apps provide information about the number and the network.

5. Check the Phone Bill

If you have access to the phone bill, the MVNO's name is usually printed at the top of the bill.

With these methods, you can easily find out the MVNO for the numbers you’re interested in. Good luck, and feel free to ask any questions.
 
Решение
With these methods, you can easily find out the MVNO for the numbers you’re interested in. Good luck, and feel free to ask any questions.
1. NumVerify only gave the main carrier (TMO, VZW, ATT)
2. Twilio same

I don't have the physical sim or bill at hand either
 


Напишите ответ...
  • Вставить:
Прикрепить файлы
Верх