Linux ubuntu 6.8.0-90-generic #91-Ubuntu SMP PREEMPT_DYNAMIC Tue Nov 18 14:14:30 UTC 2025 x86_64
nginx/1.24.0
: 67.217.245.49 | : 216.73.216.153
Cant Read [ /etc/named.conf ]
8.3.6
www-data
Bypass.pw
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
etc /
rc5.d /
[ HOME SHELL ]
Name
Size
Permission
Action
K01apache-htcacheclean
2.43
KB
-rwxr-xr-x
K01apache2
7.95
KB
-rwxr-xr-x
S01apport
2.22
KB
-rwxr-xr-x
S01auditd
3.54
KB
-rwxr-xr-x
S01clamav-freshclam
7.51
KB
-rwxr-xr-x
S01console-setup.sh
1.21
KB
-rwxr-xr-x
S01cron
3.03
KB
-rwxr-xr-x
S01dbus
3.08
KB
-rwxr-xr-x
S01grub-common
985
B
-rwxr-xr-x
S01mariadb
8.26
KB
-rwxr-xr-x
S01nginx
4.47
KB
-rwxr-xr-x
S01open-vm-tools
1.8
KB
-rwxr-xr-x
S01php8.3-fpm
4.19
KB
-rwxr-xr-x
S01plymouth
1.35
KB
-rwxr-xr-x
S01rsync
4.31
KB
-rwxr-xr-x
S01ssh
3.96
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
S01vnstat
1.55
KB
-rwxr-xr-x
S01vsftpd
2.02
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : S01vnstat
#! /bin/sh ### BEGIN INIT INFO # Provides: vnstat # Required-Start: $local_fs $remote_fs $network # Required-Stop: $local_fs $remote_fs $network # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: lightweight network traffic monitor ### END INIT INFO PATH=/usr/sbin:/usr/bin:/sbin:/bin DESC="vnStat daemon" NAME=vnstatd PIDFILE=/run/vnstat/vnstat.pid DAEMON=/usr/sbin/$NAME DAEMON_ARGS="-d --pidfile $PIDFILE" SCRIPTNAME=/etc/init.d/vnstat USER=vnstat . /lib/lsb/init-functions # Exit if the package is not installed [ -x "$DAEMON" ] || exit 0 case "$1" in start) log_daemon_msg "Starting $DESC" "$NAME" if [ ! -d /run/vnstat ]; then mkdir /run/vnstat fi chown $USER:$USER /run/vnstat start-stop-daemon --start --quiet --oknodo --chuid $USER \ --exec $DAEMON -- $DAEMON_ARGS log_end_msg $? ;; stop) log_daemon_msg "Stopping $DESC" "$NAME" start-stop-daemon --stop --quiet --oknodo --retry=TERM/15/KILL/5 --pidfile $PIDFILE \ --name $NAME status=$? rm -f $PIDFILE log_end_msg $? ;; status) pidofproc -p $PIDFILE $DAEMON >/dev/null status=$? if [ $status -eq 0 ]; then log_success_msg "$DESC is running" else log_failure_msg "$DESC is not running" fi exit $status ;; reload|force-reload) log_daemon_msg "Reloading $DESC configuration..." start-stop-daemon --stop --signal 1 --quiet --pidfile $PIDFILE --name $NAME log_end_msg $? ;; restart) $0 stop sleep 1 $0 start ;; *) echo "Usage: $SCRIPTNAME {start|stop|restart|reload|force-reload|status}" exit 1 ;; esac
Close