forked from malladisiddu/ZCrypt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbanner.py
34 lines (31 loc) · 1.9 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
27
28
29
30
31
32
33
34
import sys
import platform,os
from platform import system
import time
def slowprint(s):
for c in s + '\n':
sys.stdout.write(c)
sys.stdout.flush()
time.sleep(4. / 100)
clear = ""
if "Linux" in platform.system():
clear = "clear"
def banner():
os.system('tput reset')
print("""
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
\-_-_-_-_-_-_-_-/ /-_-_-_-_-__\ || -_-_-_-_-_-\ \ / ||-_-_-_-_-_-\ \-_-_-_-_-_-_-_-/
// // || \ \ / || \ ||
// // || |\ \ / || |\ ||
// || || || \ / || || ||
// || || || \ / || || ||
// || || || \ / || // ||
// || || -_-_-_-_-_-_/ \-_-_-_/ ||-_-_-_-_-_-// ||
// || || \ || || ||
// || || \ || || ||
// \ || \ || || ||
// \ || \ || || ||
/-_-_-_-_-_-_-_-\ \-_-_-_-_-_-_\ || \ || || ||
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*******************************<<ZCrypt:Basic Decryption Tool>> <<Coded by: st0ic3r>>******************************
""")