text
stringlengths
0
93.6k
try:
country_codes = readisdc()["isdcodes"]
except FileNotFoundError:
update()
__VERSION__ = get_version()
__CONTRIBUTORS__ = ['Th3-C0der']
ALL_COLORS = [Fore.GREEN, Fore.RED, Fore.YELLOW, Fore.BLUE,
Fore.MAGENTA, Fore.CYAN, Fore.WHITE]
RESET_ALL = Style.RESET_ALL
ASCII_MODE = False
DEBUG_MODE = False
description = """Th3-Bomber - Your Friendly Spammer Application
Th3-Bomber can be used for many purposes which incudes -
\t Exposing the vulnerable APIs over Internet
\t Friendly Spamming
\t Testing Your Spam Detector and more ....
Th3-Bomber is not intented for malicious uses.
"""
parser = argparse.ArgumentParser(description=description,
epilog='Coded by SpeedX !!!')
parser.add_argument("-sms", "--sms", action="store_true",
help="start TBomb with SMS Bomb mode")
parser.add_argument("-call", "--call", action="store_true",
help="start TBomb with CALL Bomb mode")
parser.add_argument("-mail", "--mail", action="store_true",
help="start TBomb with MAIL Bomb mode")
parser.add_argument("-ascii", "--ascii", action="store_true",
help="show only characters of standard ASCII set")
parser.add_argument("-u", "--update", action="store_true",
help="update TBomb")
parser.add_argument("-c", "--contributors", action="store_true",
help="show current TBomb contributors")
parser.add_argument("-v", "--version", action="store_true",
help="show current TBomb version")
if __name__ == "__main__":
args = parser.parse_args()
if args.ascii:
ASCII_MODE = True
mesgdcrt = MessageDecorator("stat")
if args.version:
print("Version: ", __VERSION__)
elif args.contributors:
print("Contributors: ", " ".join(__CONTRIBUTORS__))
elif args.update:
update()
elif args.mail:
selectnode(mode="mail")
elif args.call:
selectnode(mode="call")
elif args.sms:
selectnode(mode="sms")
else:
choice = ""
avail_choice = {
"1": "SMS",
"2": "CALL",
"3": "MAIL"
}
try:
while (choice not in avail_choice):
clr()
bann_text()
print("Available Options:\n")
for key, value in avail_choice.items():
print("[ {key} ] {value} BOMB".format(key=key,
value=value))
print()
choice = input(mesgdcrt.CommandMessage("Enter Choice : "))
selectnode(mode=avail_choice[choice].lower())
except KeyboardInterrupt:
mesgdcrt.WarningMessage("Received INTR call - Exiting...")
sys.exit()
sys.exit()
# <FILESEP>
################################################################################
#
# Program: Assignment Operator Examples
#
# Description: Examples of using the assignment operators in Python.
#
# YouTube Lesson: https://www.youtube.com/watch?v=eX6A5XVMqJk
#
# Author: Kevin Browne @ https://portfoliocourses.com
#
################################################################################
# The assignment operator will create a variable called 'number' and the
# expression on the right-side will be evaluated (in this case to 3) and
# "stored into" number.