Update and rename lib/banner.py to utils/misc.py

This commit is contained in:
Richard Mwewa
2022-05-20 16:46:34 +02:00
committed by GitHub
parent 8b7ac9e428
commit b16eb762e0
2 changed files with 20 additions and 25 deletions

20
utils/misc.py Normal file
View File

@@ -0,0 +1,20 @@
import os
from utils.colors import Color
class Banner:
versionTag = '2.0.0'
nameLogo = f'''{Color.white}
_______ __ _______ __ __
| |.----.| |_.-----.| __|.--.--.|__| |_.-----.
| - || __|| _| _ ||__ || | || | _| -__|
|_______||____||____|_____||_______||_____||__|____|_____|
v{versionTag}
{Color.white}— Advanced Github {Color.red}OSINT{Color.white} Framework{Color.reset}
.:{Color.white}{Color.green}{os.getlogin()}{Color.reset}:.
- {Color.white}Use {Color.green}help{Color.reset}{Color.white} command for usage{Color.reset}
- {Color.white}Commands are case insensitive{Color.reset}
{'-'*32}
'''