-
Notifications
You must be signed in to change notification settings - Fork 106
/
banner.py
26 lines (21 loc) · 1.59 KB
/
banner.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
def banner():
print("\033[91m{}\033[00m" .format("""
------------------------------------------------------------------------------------------------------
_|_|_| _|_|_|_| _| _|
_| _| _| _| _| _| _| _|_|_| _|_|_| _|_|_| _|_|_|_| _|_| _|_|_|
_|_|_| _| _| _|_|_| _| _| _|_| _| _| _| _| _| _| _| _| _|
_| _| _| _| _| _| _|_| _| _| _| _| _| _| _| _| _|
_| _|_|_| _| _|_|_| _|_|_| _|_|_| _|_|_| _|_| _| _|_| _| _|
_|
_|_|
"""))
def printY(out): print("\033[93m{}\033[00m" .format("[+] " + out))
def printP(out): print("\033[95m{}\033[00m" .format("[-] " + out))
def title():
print("------------------------------------------------------------------------------------------------------")
printY("Tool : PyFuscation")
printY("Author : CB Hue")
printY("Twitter : @_cbhue_")
printY("github : https://github.com/CBHue")
print("------------------------------------------------------------------------------------------------------")
print("")