Update banners.py

This commit is contained in:
Richard Mwewa
2022-11-25 02:48:23 +02:00
committed by GitHub
parent 7c8fea02e6
commit ae73fdffde

View File

@@ -5,35 +5,35 @@ from octosuite.colors import red, white, green, reset
# banners.py
# This file holds the program's banners and version tag
version_tag = "2.2.3"
version_tag = "3.0.0"
def ascii_banner():
banner_tree = Tree(getpass.getuser())
banner_tree.add(f"use {green}help{reset} command for usage")
banner_tree.add(f"commands are case insensitive\n")
ascii_banners = [
"""
"""
_______ __ _______ __ __
| |.----.| |_.-----.| __|.--.--.|__| |_.-----.
| - || __|| _| _ ||__ || | || | _| -__|
|_______||____||____|_____||_______||_____||__|____|_____|
""",
"""
""",
"""
╔═╗┌─┐┌┬┐┌─┐╔═╗┬ ┬┬┌┬┐┌─┐
║ ║│ │ │ │╚═╗│ ││ │ ├┤
╚═╝└─┘ ┴ └─┘╚═╝└─┘┴ ┴ └─┘
""",
"""
"""
░▒█▀▀▀█░█▀▄░▀█▀░▄▀▀▄░▒█▀▀▀█░█░▒█░░▀░░▀█▀░█▀▀
░▒█░░▒█░█░░░░█░░█░░█░░▀▀▀▄▄░█░▒█░░█▀░░█░░█▀▀
░▒█▄▄▄█░▀▀▀░░▀░░░▀▀░░▒█▄▄▄█░░▀▀▀░▀▀▀░░▀░░▀▀▀
""",
"""
"""
▄▀▄ ▄▀▀ ▀█▀ ▄▀▄ ▄▀▀ █ █ █ ▀█▀ ██▀
▀▄▀ ▀▄▄ █ ▀▄▀ ▄██ ▀▄█ █ █ █▄▄
"""]
ascii_banner = random.choice(ascii_banners)
return f"""{ascii_banner} v{version_tag}
return banner_tree, f"""{ascii_banner} v{version_tag}
{white}— Advanced Github {red}OSINT{white} Framework
.:{getpass.getuser()}:.
├─ use {green}help{reset}{white} command for usage
└╼ commands are case insensitive{reset}
"""