Linux cpanel.rrshost.in 5.15.0-25-generic #25-Ubuntu SMP Wed Mar 30 15:54:22 UTC 2022 x86_64
Apache
: 109.123.238.221 | : 172.69.214.160
128 Domain
8.2.28
aev999
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
libexec /
dovecot /
[ HOME SHELL ]
Name
Size
Permission
Action
aggregator
22.88
KB
-rwxr-xr-x
anvil
26.68
KB
-rwxr-xr-x
auth
430.71
KB
-rwxr-xr-x
checkpassword-reply
14.3
KB
-rwxr-xr-x
config
173.77
KB
-rwxr-xr-x
decode2text.sh
2.77
KB
-rwxr-xr-x
deliver
26.47
KB
-rwxr-xr-x
dict
103.92
KB
-rwxr-xr-x
director
151.41
KB
-rwxr-xr-x
dns-client
18.78
KB
-rwxr-xr-x
doveadm-server
657.48
KB
-rwxr-xr-x
dovecot-lda
26.47
KB
-rwxr-xr-x
gdbhelper
14.3
KB
-rwxr-xr-x
health-check.sh
943
B
-rwxr-xr-x
imap
291.2
KB
-rwxr-xr-x
imap-hibernate
38.97
KB
-rwxr-xr-x
imap-login
47.06
KB
-rwxr-xr-x
imap-urlauth
34.77
KB
-rwxr-xr-x
imap-urlauth-login
19.06
KB
-rwxr-xr-x
imap-urlauth-worker
62.76
KB
-rwxr-xr-x
indexer
34.73
KB
-rwxr-xr-x
indexer-worker
22.75
KB
-rwxr-xr-x
ipc
22.68
KB
-rwxr-xr-x
lmtp
66.85
KB
-rwxr-xr-x
log
34.65
KB
-rwxr-xr-x
maildirlock
14.37
KB
-rwxr-xr-x
mkcert.sh
879
B
-rwxr-xr-x
old-stats
62.91
KB
-rwxr-xr-x
pop3
62.77
KB
-rwxr-xr-x
pop3-login
35.06
KB
-rwxr-xr-x
quota-status
115.87
KB
-rwxr-xr-x
rawlog
22.3
KB
-rwxr-xr-x
replicator
50.84
KB
-rwxr-xr-x
script
22.49
KB
-rwxr-xr-x
script-login
18.3
KB
-rwxr-xr-x
stats
70.97
KB
-rwxr-xr-x
submission
110.91
KB
-rwxr-xr-x
submission-login
39.06
KB
-rwxr-xr-x
xml2text
14.35
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : health-check.sh
#!/bin/sh # # Copyright (c) 2019 Dovecot authors, see the included COPYING file */ # # This script is intended to be called by the script service and to be # connected to a socket using a service configuration like this: # executable = script -p /path/to/health-check.sh # # This simple example merely answers "PONG\n" if the input is "PING\n". It # stops waiting for input after $timeout which causes the process to die # which causes the script module to close the socket. Inputs and outputs # can be written to STDIN and STDOUT, they are duplicated file-descriptors # if called from the script service. timeout=10 # timeout the read via trap for POSIX shell compatibility trap "exit 0" QUIT { sleep $timeout kill -3 $$ 2>/dev/null } & read -r input exit_code=$? cleaned_input=$(echo ${input} | sed "s/[^a-zA-Z0-9]//g") if [ ${exit_code} -eq 0 ] && [ "${cleaned_input}" = "PING" ];then echo "PONG" fi # always exit successful exit 0
Close