forked from malladisiddu/ZCrypt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
banner.py.save
33 lines (30 loc) · 1.86 KB
/
banner.py.save
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
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>> <<st0ic3r>>
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++""")