Current Path: > > usr > lib > >
Operation : Linux premium107.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 198.54.126.246 | Your IP: 216.73.216.181 Domains : 1034 Domain(s) Permission : [ 0555 ]
| Name | Type | Size | Last Modified | Actions |
|---|---|---|---|---|
| .build-id | Directory | - | - | |
| NetworkManager | Directory | - | - | |
| binfmt.d | Directory | - | - | |
| debug | Directory | - | - | |
| dracut | Directory | - | - | |
| environment.d | Directory | - | - | |
| exim | Directory | - | - | |
| firewalld | Directory | - | - | |
| firmware | Directory | - | - | |
| fontconfig | Directory | - | - | |
| games | Directory | - | - | |
| gcc | Directory | - | - | |
| gems | Directory | - | - | |
| grub | Directory | - | - | |
| kbd | Directory | - | - | |
| kcare | Directory | - | - | |
| kdump | Directory | - | - | |
| kernel | Directory | - | - | |
| locale | Directory | - | - | |
| modprobe.d | Directory | - | - | |
| modules | Directory | - | - | |
| modules-load.d | Directory | - | - | |
| motd.d | Directory | - | - | |
| node_modules | Directory | - | - | |
| polkit-1 | Directory | - | - | |
| python2.7 | Directory | - | - | |
| python3.6 | Directory | - | - | |
| python3.8 | Directory | - | - | |
| rpm | Directory | - | - | |
| sse2 | Directory | - | - | |
| sysctl.d | Directory | - | - | |
| sysimage | Directory | - | - | |
| systemd | Directory | - | - | |
| sysusers.d | Directory | - | - | |
| tmpfiles.d | Directory | - | - | |
| tuned | Directory | - | - | |
| udev | Directory | - | - | |
| cpp | File | 1266552 bytes | August 26 2025 09:47:25. | |
| os-release | File | 381 bytes | September 05 2025 12:40:28. | |
| sendmail | File | 1288 bytes | December 17 2025 16:20:20. |
#!/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" SENDMAIL $$ "$@"
RETVAL=$?
else
trap 'ctrl_c_handler' 2
CAGEFS_TOKEN="$TOKEN" /usr/sbin/proxyexec -c cagefs.sock "$USR" "$CWD" SENDMAIL $$ "$@"
RETVAL=$?
/bin/rm -f $PIDFILE > /dev/null 2>&1
fi
exit $RETVAL
SILENT KILLER Tool