text stringlengths 1 93.6k |
|---|
def validate_input(ip, val_range):
|
try:
|
ip = int(ip)
|
if ip in val_range:
|
return ip
|
else:
|
return None
|
except:
|
return None
|
class HackingTool(object):
|
# About the HackingTool
|
TITLE: str = "" # used to show info in the menu
|
DESCRIPTION: str = ""
|
INSTALL_COMMANDS: List[str] = []
|
INSTALLATION_DIR: str = ""
|
UNINSTALL_COMMANDS: List[str] = []
|
RUN_COMMANDS: List[str] = []
|
OPTIONS: List[Tuple[str, Callable]] = []
|
PROJECT_URL: str = ""
|
def __init__(self, options = None, installable: bool = True,
|
runnable: bool = True):
|
if options is None:
|
options = []
|
if isinstance(options, list):
|
self.OPTIONS = []
|
if installable:
|
self.OPTIONS.append(('Install', self.install))
|
if runnable:
|
self.OPTIONS.append(('Run', self.run))
|
self.OPTIONS.extend(options)
|
else:
|
raise Exception(
|
"options must be a list of (option_name, option_fn) tuples")
|
def show_info(self):
|
desc = self.DESCRIPTION
|
if self.PROJECT_URL:
|
desc += '\n\t[*] '
|
desc += self.PROJECT_URL
|
os.system(f'echo "{desc}"|boxes -d boy | lolcat')
|
def show_options(self, parent = None):
|
clear_screen()
|
self.show_info()
|
for index, option in enumerate(self.OPTIONS):
|
print(f"[{index + 1}] {option[0]}")
|
if self.PROJECT_URL:
|
print(f"[{98}] Open project page")
|
print(f"[{99}] Back to {parent.TITLE if parent is not None else 'Exit'}")
|
option_index = input("Select an option : ")
|
try:
|
option_index = int(option_index)
|
if option_index - 1 in range(len(self.OPTIONS)):
|
ret_code = self.OPTIONS[option_index - 1][1]()
|
if ret_code != 99:
|
input("\n\nPress ENTER to continue:")
|
elif option_index == 98:
|
self.show_project_page()
|
elif option_index == 99:
|
if parent is None:
|
sys.exit()
|
return 99
|
except (TypeError, ValueError):
|
print("Please enter a valid option")
|
input("\n\nPress ENTER to continue:")
|
except Exception:
|
print_exc()
|
input("\n\nPress ENTER to continue:")
|
return self.show_options(parent = parent)
|
def before_install(self):
|
pass
|
def install(self):
|
self.before_install()
|
if isinstance(self.INSTALL_COMMANDS, (list, tuple)):
|
for INSTALL_COMMAND in self.INSTALL_COMMANDS:
|
os.system(INSTALL_COMMAND)
|
self.after_install()
|
def after_install(self):
|
print("Successfully installed!")
|
def before_uninstall(self) -> bool:
|
""" Ask for confirmation from the user and return """
|
return True
|
def uninstall(self):
|
if self.before_uninstall():
|
if isinstance(self.UNINSTALL_COMMANDS, (list, tuple)):
|
for UNINSTALL_COMMAND in self.UNINSTALL_COMMANDS:
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.