GhostManSec
Server: Apache
System: Linux instant0279.server.com 2.6.32-696.3.1.el6.x86_64 #1 SMP Tue May 30 19:52:55 UTC 2017 x86_64
User: ptgoldenvisa (520)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //etc/rc6.d/K10securetmp
#! /bin/sh
#
# securetmp       Start Secure Tmp
#
# chkconfig: 345 05 10
# description: This is the securetmp service

# Source function library.
if [ -f /etc/init.d/functions ]; then
  . /etc/init.d/functions
elif [ -f /etc/rc.d/init.d/functions ]; then
  . /etc/rc.d/init.d/functions
else
  echo "Could not find functions file, your system may be broken"
  exit 1
fi

[ -f /usr/local/cpanel/scripts/securetmp ] || exit 0

LANG=C
RETVAL=0

# See how we were called.
case "$1" in
  start)
	umask 0022
        echo -n "Starting securetmp: "
        daemon /usr/local/cpanel/scripts/securetmp --auto
        echo
	;;
  stop)
	action "securetmp cannot be stopped: " echo
	;;
  status)
	status init
	;;
  restart)
  	$0 stop
	$0 start
	;;
  *)
	echo "Usage: $0 {start|stop|status|restart}"
	exit 1
esac

exit