XYZ File Manager
Current Path:
/usr/sbin
usr
/
sbin
/
📁
..
📄
cagefs_enter_site
(1.83 KB)
📄
cagefsctl-user
(12.89 KB)
📄
chroot
(39.73 KB)
📄
consoletype
(15.13 KB)
📄
cracklib-check
(15.7 KB)
📄
cracklib-format
(255 B)
📄
cracklib-packer
(15.7 KB)
📄
cracklib-unpacker
(15.69 KB)
📄
create-cracklib-dict
(994 B)
📄
ddns-confgen
(27.25 KB)
📄
exim
(1.25 KB)
📄
faillock
(23.18 KB)
📄
hsendmail
(4.4 MB)
📄
ip
(762.27 KB)
📄
ldconfig
(1.12 MB)
📄
mkhomedir_helper
(23.21 KB)
📄
named-checkzone
(39.34 KB)
📄
named-compilezone
(39.34 KB)
📄
named-nzd2nzf
(15.12 KB)
📄
nsec3hash
(15.19 KB)
📄
pam_console_apply
(43.51 KB)
📄
pam_namespace_helper
(471 B)
📄
pam_timestamp_check
(15.13 KB)
📄
pluginviewer
(19.39 KB)
📄
proxyexec
(24.01 KB)
📄
pwhistory_helper
(19.2 KB)
📄
saslauthd
(88.33 KB)
📄
sasldblistusers2
(15.27 KB)
📄
saslpasswd2
(15.24 KB)
📄
sendmail
(4.4 MB)
📄
sendmail.bak
(1.03 KB)
📄
sendmail.exim
(1.25 KB)
📄
testsaslauthd
(15.16 KB)
📄
tmpwatch
(36.03 KB)
📄
tsig-keygen
(27.25 KB)
📄
unix_chkpwd
(23.28 KB)
📄
unix_update
(31.32 KB)
Editing: sendmail.exim
#!/usr/bin/bash ##CageFS proxyexec wrapper - ver 17 if [[ $EUID -eq 0 ]]; then echo 'Cannot be run as root' exit 1 fi USR=`/usr/bin/whoami` USER_TOKEN_PATH="/var/.cagefs/.cagefs.token" WEBSITE_ISOLATION_FLAG="/opt/cloudlinux/flags/enabled-flags.d/website-isolation.flag" if [[ -f "$WEBSITE_ISOLATION_FLAG" && -n "$WEBSITE_TOKEN_PATH" ]]; then USER_TOKEN_PATH="$WEBSITE_TOKEN_PATH" fi TOKEN=`/bin/cat ${USER_TOKEN_PATH}` # It's user's tmp directory and write to it is secure procedure # because this script is running only under usual user PIDFILE="/tmp/.cagefs.proxy.$$" USER_INTERRUPT=13 CWD=`pwd` ctrl_c_handler() { if [[ -f "$PIDFILE" ]]; then pid=`/bin/cat $PIDFILE` /bin/rm -f $PIDFILE > /dev/null 2>&1 /bin/kill -s SIGINT "$pid" > /dev/null 2>&1 fi exit $USER_INTERRUPT } if [[ -e /var/.cagefs/origin ]]; then ORIGIN=`/bin/cat /var/.cagefs/origin` REMOTE="/usr/bin/ssh -F /etc/ssh/cagefs-rexec_config $USR@$ORIGIN" $REMOTE CAGEFS_TOKEN="$TOKEN" /usr/sbin/proxyexec -c cagefs.sock "$USR" "$CWD" EXIM $$ "$@" RETVAL=$? else trap 'ctrl_c_handler' 2 CAGEFS_TOKEN="$TOKEN" /usr/sbin/proxyexec -c cagefs.sock "$USR" "$CWD" EXIM $$ "$@" RETVAL=$? /bin/rm -f $PIDFILE > /dev/null 2>&1 fi exit $RETVAL
Upload File
Create Folder