forked from mcnamee/huntkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
startup.sh
21 lines (19 loc) · 1.32 KB
/
startup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env zsh
BOLD=$(tput bold)
NORMAL=$(tput sgr0)
RED='\033[0;31m'
NC='\033[0m'
# Print a welcome message
echo -e ' ██╗ ██╗██╗ ██╗███╗ ██╗████████╗██╗ ██╗██╗████████╗'
echo -e ' ██║ ██║██║ ██║████╗ ██║╚══██╔══╝██║ ██╔╝██║╚══██╔══╝'
echo -e ' ███████║██║ ██║██╔██╗ ██║ ██║ █████╔╝ ██║ ██║ '
echo -e ' ██╔══██║██║ ██║██║╚██╗██║ ██║ ██╔═██╗ ██║ ██║ '
echo -e ' ██║ ██║╚██████╔╝██║ ╚████║ ██║ ██║ ██╗██║ ██║ '
echo -e ' ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═══╝ ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═╝ '
echo -e ' Built and maintained by https://mcn.am'
echo -e ' https://github.com/mcnamee/huntkit'
echo -e "${BOLD}"
echo -e ' Recon — Exploitation — Privilege Escalation — Persistence'
echo -e "${NC}"
# Ensure the final executable receives the Unix signals
exec "$@"