-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdisplay.py
42 lines (36 loc) · 1.91 KB
/
display.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
35
36
37
38
39
40
41
42
import typer
CREDITS = ' Created by @CyberVarun (https://github.com/CyberVarun) '
VERSION="v0.1"
NETSCAN = '''
_ _ _ _____
| \ | | | | / ____|
| \| | ___| |_ _____| (___ ___ __ _ _ __
| . ` |/ _ \ __|______\___ \ / __/ _` | '_ \
| |\ | __/ |_ ____) | (_| (_| | | | |
|_| \_|\___|\__| |_____/ \___\__,_|_| |_|'''
PORTSCANNER = '''
_____ _ _____
| __ \ | | / ____|
| |__) |__ _ __| |_ _____| (___ ___ __ _ _ __ _ __ ___ _ __
| ___/ _ \| '__| __|______\___ \ / __/ _` | '_ \| '_ \ / _ \ '__|
| | | (_) | | | |_ ____) | (_| (_| | | | | | | | __/ |
|_| \___/|_| \__| |_____/ \___\__,_|_| |_|_| |_|\___|_| '''
FTPCRACKER = '''
______ _______ _____ _____ _____ _____ _ ________ _____
| ____|__ __| __ \ / ____| __ \ /\ / ____| |/ / ____| __ \
| |__ | | | |__) | | | |__) | / \ | | | ' /| |__ | |__) |
| __| | | | ___/| | | _ / / /\ \| | | < | __| | _ /
| | | | | | | |____| | \ \ / ____ \ |____| . \| |____| | \ \
|_| |_| |_| \_____|_| \_\/_/ \_\_____|_|\_\______|_| \_\ '''
SSHCRACKER = '''
_____ _____ _ _ _____ _____ _____ _ ________ _____
/ ____/ ____| | | |/ ____| __ \ /\ / ____| |/ / ____| __ \
| (___| (___ | |__| | | | |__) | / \ | | | ' /| |__ | |__) |
\___ \\___ \| __ | | | _ / / /\ \| | | < | __| | _ /
____) |___) | | | | |____| | \ \ / ____ \ |____| . \| |____| | \ \
|_____/_____/|_| |_|\_____|_| \_\/_/ \_\_____|_|\_\______|_| \_\ '''
def credits(logo):
typer.clear() # clear the screen
# print logo and cretids
typer.secho(logo, fg=typer.colors.BRIGHT_CYAN)
typer.secho(CREDITS + VERSION, fg=typer.colors.BRIGHT_CYAN)