Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 172.71.203.61
Cant Read [ /etc/named.conf ]
8.1.5
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
etc /
rc4.d /
[ HOME SHELL ]
Name
Size
Permission
Action
K01apache-htcacheclean
2.43
KB
-rwxr-xr-x
K01irqbalance
2.58
KB
-rwxr-xr-x
K01open-vm-tools
1.8
KB
-rwxr-xr-x
S01apache2
7.99
KB
-rwxr-xr-x
S01apport
2.85
KB
-rwxr-xr-x
S01atd
1.05
KB
-rwxr-xr-x
S01console-setup.sh
1.2
KB
-rwxr-xr-x
S01cron
2.99
KB
-rwxr-xr-x
S01dbus
3.08
KB
-rwxr-xr-x
S01elasticsearch
3.95
KB
-rwxr-x---
S01grub-common
985
B
-rwxr-xr-x
S01haveged
2.31
KB
-rwxr-xr-x
S01lvm2-lvmpolld
586
B
-rwxr-xr-x
S01multipath-tools
2.76
KB
-rwxr-xr-x
S01nginx
4.47
KB
-rwxr-xr-x
S01php7.4-fpm
4.19
KB
-rwxr-xr-x
S01php8.1-fpm
4.19
KB
-rwxr-xr-x
S01plymouth
1.33
KB
-rwxr-xr-x
S01rsync
4.31
KB
-rwxr-xr-x
S01rsyslog
2.8
KB
-rwxr-xr-x
S01ssh
3.85
KB
-rwxr-xr-x
S01sysstat
1.54
KB
-rwxr-xr-x
S01unattended-upgrades
1.36
KB
-rwxr-xr-x
S01uuidd
1.28
KB
-rwxr-xr-x
S01vsftpd
2.02
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : S01sysstat
#! /bin/sh # vim:ft=sh:et ### BEGIN INIT INFO # Provides: sysstat # Required-Start: $remote_fs $local_fs $syslog # Required-Stop: # Default-Start: 2 3 4 5 # Default-Stop: # Short-Description: Start/stop sysstat's sadc # Description: Sysstat contains system performance tools for Linux # The init file runs the sadc command in order to write # the "LINUX RESTART" mark to the daily data file ### END INIT INFO PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin DAEMON=/usr/lib/sysstat/debian-sa1 NAME=sadc DESC="the system activity data collector" test -f "$DAEMON" || exit 0 umask 022 # our configuration file DEFAULT=/etc/default/sysstat # default setting... ENABLED="false" # ...overridden in the configuration file test -r "$DEFAULT" && . "$DEFAULT" set -e status=0 . /lib/lsb/init-functions case "$1" in start|restart|reload|force-reload) if [ "$ENABLED" = "true" ] ; then log_daemon_msg "Starting $DESC" "$NAME" start-stop-daemon --start --quiet --exec $DAEMON -- --boot || status=$? log_end_msg $status fi ;; stop) ;; status) if [ "$ENABLED" = "true" ] ; then log_success_msg "sadc cron jobs are enabled" exit 0 else log_failure_msg "sadc cron jobs are disabled" exit 3 fi ;; *) log_failure_msg "Usage: $0 {start|stop|restart|reload|force-reload|status}" exit 1 ;; esac exit $status
Close