Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.26
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
apps /
dovecot /
libexec /
dovecot /
Delete
Unzip
Name
Size
Permission
Date
Action
aggregator
67.12
KB
-rwxr-xr-x
2024-09-20 10:46
anvil
71.58
KB
-rwxr-xr-x
2024-09-20 10:46
auth
1.99
MB
-rwxr-xr-x
2024-09-20 10:46
checkpassword-reply
19.9
KB
-rwxr-xr-x
2024-09-20 10:46
config
481.88
KB
-rwxr-xr-x
2024-09-20 10:46
decode2text.sh
2.77
KB
-rwxr-xr-x
2024-09-20 10:46
deliver
104.3
KB
-rwxr-xr-x
2024-09-20 10:46
dict
408.44
KB
-rwxr-xr-x
2024-09-20 10:46
director
575.39
KB
-rwxr-xr-x
2024-09-20 10:46
dns-client
43.07
KB
-rwxr-xr-x
2024-09-20 10:46
doveadm-server
3.08
MB
-rwxr-xr-x
2024-09-20 10:46
dovecot-lda
104.3
KB
-rwxr-xr-x
2024-09-20 10:46
gdbhelper
18.66
KB
-rwxr-xr-x
2024-09-20 10:46
health-check.sh
943
B
-rwxr-xr-x
2024-09-20 10:46
imap
1.65
MB
-rwxr-xr-x
2024-09-20 10:46
imap-hibernate
131.04
KB
-rwxr-xr-x
2024-09-20 10:46
imap-login
161.72
KB
-rwxr-xr-x
2024-09-20 10:46
imap-urlauth
78.58
KB
-rwxr-xr-x
2024-09-20 10:46
imap-urlauth-login
46.92
KB
-rwxr-xr-x
2024-09-20 10:46
imap-urlauth-worker
210.13
KB
-rwxr-xr-x
2024-09-20 10:46
indexer
97.38
KB
-rwxr-xr-x
2024-09-20 10:46
indexer-worker
109.33
KB
-rwxr-xr-x
2024-09-20 10:46
ipc
74.68
KB
-rwxr-xr-x
2024-09-20 10:46
lmtp
315.13
KB
-rwxr-xr-x
2024-09-20 10:46
log
89.23
KB
-rwxr-xr-x
2024-09-20 10:46
maildirlock
22.97
KB
-rwxr-xr-x
2024-09-20 10:46
old-stats
191.36
KB
-rwxr-xr-x
2024-09-20 10:46
pop3
203.13
KB
-rwxr-xr-x
2024-09-20 10:46
pop3-login
116.46
KB
-rwxr-xr-x
2024-09-20 10:46
quota-status
698.55
KB
-rwxr-xr-x
2024-09-20 10:46
rawlog
47.83
KB
-rwxr-xr-x
2024-09-20 10:46
replicator
153.04
KB
-rwxr-xr-x
2024-09-20 10:46
script
44.49
KB
-rwxr-xr-x
2024-09-20 10:46
script-login
37.4
KB
-rwxr-xr-x
2024-09-20 10:46
stats
309.67
KB
-rwxr-xr-x
2024-09-20 10:46
submission
458.91
KB
-rwxr-xr-x
2024-09-20 10:46
submission-login
132.78
KB
-rwxr-xr-x
2024-09-20 10:46
xml2text
23.84
KB
-rwxr-xr-x
2024-09-20 10:46
Save
Rename
#!/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