Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
etc /
rc1.d /
Delete
Unzip
Name
Size
Permission
Date
Action
K01apache-htcacheclean
2.16
KB
-rwxr-xr-x
2016-04-05 23:15
K01apache2
7.9
KB
-rwxr-xr-x
2016-04-05 23:15
K01atd
1.05
KB
-rwxr-xr-x
2015-12-06 16:45
K01irqbalance
2.32
KB
-rwxr-xr-x
2016-04-11 19:39
K01lvm2-lvmetad
571
B
-rwxr-xr-x
2015-10-30 18:33
K01lvm2-lvmpolld
586
B
-rwxr-xr-x
2015-10-30 18:33
K01lxcfs
2.32
KB
-rwxr-xr-x
2017-11-09 02:43
K01lxd
2.48
KB
-rwxr-xr-x
2016-10-13 16:04
K01mdadm
2.31
KB
-rwxr-xr-x
2017-10-09 15:47
K01ntp
1.52
KB
-rwxr-xr-x
2017-09-05 17:24
K01open-iscsi
2.44
KB
-rwxr-xr-x
2016-03-29 19:32
K01open-vm-tools
1.8
KB
-rwxr-xr-x
2018-03-22 13:13
K01openvpn
10
KB
-rwxr-xr-x
2016-01-21 12:16
K01postfix
7.79
KB
-rwxr-xr-x
2017-10-25 14:50
K01thermald
1.13
KB
-rwxr-xr-x
2016-01-29 10:57
K01ufw
2
KB
-rwxr-xr-x
2014-08-07 14:58
K01unscd
3.58
KB
-rwxr-xr-x
2015-12-03 19:28
K01uuidd
1.28
KB
-rwxr-xr-x
2016-05-27 01:30
K02dovecot
5.12
KB
-rwxr-xr-x
2016-03-19 00:29
K02iscsid
1.47
KB
-rwxr-xr-x
2016-03-29 19:32
K03mysql
5.48
KB
-rwxr-xr-x
2016-07-11 15:36
K05rsyslog
2.73
KB
-rwxr-xr-x
2016-02-03 11:54
README
369
B
-rw-r--r--
2016-01-19 19:33
S01killprocs
1.27
KB
-rwxr-xr-x
2016-01-19 19:33
S02single
597
B
-rwxr-xr-x
2016-01-19 19:33
Save
Rename
#!/bin/sh # # Start the MD monitor daemon for all active MD arrays if desired. # # Copyright © 2001-2005 Mario Jou/3en <joussen@debian.org> # Copyright © 2005-2009 Martin F. Krafft <madduck@debian.org> # Distributable under the terms of the GNU GPL version 2. # ### BEGIN INIT INFO # Provides: mdadm # Required-Start: $local_fs $syslog # Required-Stop: $local_fs $syslog sendsigs # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: MD monitoring daemon # Description: mdadm provides a monitor mode, in which it will scan for # problems with the MD devices. If a problem is found, the # administrator is alerted via email, or a custom script is # run. ### END INIT INFO # set -eu MDADM=/sbin/mdadm MDMON=/sbin/mdmon RUNDIR=/run/mdadm PIDFILE=$RUNDIR/monitor.pid DEBIANCONFIG=/etc/default/mdadm test -x "$MDADM" || exit 0 test -f /proc/mdstat || exit 0 START_DAEMON=true test -f $DEBIANCONFIG && . $DEBIANCONFIG . /lib/lsb/init-functions is_true() { case "${1:-}" in [Yy]es|[Yy]|1|[Tt]|[Tt]rue) return 0;; *) return 1; esac } case "${1:-}" in start) if [ -x /usr/bin/systemd-detect-virt ] && /usr/bin/systemd-detect-virt --quiet --container; then log_daemon_msg "Not starting MD monitoring service in container" log_end_msg 0 exit 0 fi if is_true $START_DAEMON; then log_daemon_msg "Starting MD monitoring service" "mdadm --monitor" mkdir -p $RUNDIR set +e start-stop-daemon -S -p $PIDFILE -x $MDADM -- \ --monitor --pid-file $PIDFILE --daemonise --scan ${DAEMON_OPTIONS:-} log_end_msg $? set -e fi ;; stop) if [ -f $PIDFILE ] ; then log_daemon_msg "Stopping MD monitoring service" "mdadm --monitor" set +e start-stop-daemon -K -p $PIDFILE -x $MDADM rm -f $PIDFILE log_end_msg $? set -e fi for file in $RUNDIR/md[0-9]*.pid ; do [ ! -f "$file" ] && continue ln -sf $file /run/sendsigs.omit.d/mdmon-${file##*/} done ;; status) status_of_proc -p $PIDFILE "$MDADM" "mdadm" && exit 0 || exit $? ;; restart|reload|force-reload) ${0:-} stop ${0:-} start ;; *) echo "Usage: ${0:-} {start|stop|status|restart|reload|force-reload}" >&2 exit 1 ;; esac exit 0