-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathbanner.py
34 lines (29 loc) · 2.01 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
def getBanner():
banner= """
_ _ _
/\ | | (_) | |
/ \ _ __ __| | _ __ ___ _ __| |
/ /\ \ | '_ \ / _` || '__|/ _ \ | | / _` |
/ ____ \ | | | || (_| || | | (_) || || (_| |
/_/ \_\|_| |_| \__,_||_| \___/ |_| \__,_|
_ _ _ _
/\ | |(_) | | (_)
/ \ _ __ _ __ | | _ ___ __ _ | |_ _ ___ _ __
/ /\ \ | '_ \ | '_ \ | || | / __|/ _` || __|| | / _ \ | '_ \
/ ____ \ | |_) || |_) || || || (__| (_| || |_ | || (_) || | | |
/_/ \_\| .__/ | .__/ |_||_| \___|\__,_| \__||_| \___/ |_| |_|
| | | |
|_| |_|
_
/\ | |
/ \ _ __ __ _ | | _ _ ____ ___ _ __
/ /\ \ | '_ \ / _` || || | | ||_ // _ \| '__|
/ ____ \ | | | || (_| || || |_| | / /| __/| |
/_/ \_\|_| |_| \__,_||_| \__, |/___|\___||_|
__/ |
|___/
------------------------------------------------------------------------------
NotSoSecure (c) 2024 | Developed by Sanjay Gondaliya - www.sanjaygondaliya.com
------------------------------------------------------------------------------
"""
return banner