forked from Gohanckz/guillotine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
banner.py
28 lines (22 loc) · 1.06 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
#!/usr/bin/env python
#_*_ coding: utf8 _*_
#------------------------------------------------------------
# ---- SECURITY HEADERS HTTP FINDER ----|
# ---- Gohanckz ----|
# ---- Contact : Gohanckz@gmail.com ----|
# ---- Version : 2.0 ----|
#------------------------------------------------------------
def banner():
print(" ______ ")
print(" |\____/|, _ ")
print(" | | \ {\\, ")
print(" | | `,__.'\` ")
print(" ___|______|____""', :__. ")
print(" / | (__) | / `, `. ")
print(" / !______| L\J' `. ")
print(" :_______________________________i. ")
print(" | GUILLOTINE | ")
print(" | By Gohanckz | ")
print(" !________________________________! ")
if __name__=='__main__':
banner()