Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.217.79
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
etc /
rc2.d /
Delete
Unzip
Name
Size
Permission
Date
Action
K01apache-htcacheclean
2.43
KB
-rwxr-xr-x
2024-09-28 08:35
S01apache2
7.95
KB
-rwxr-xr-x
2024-09-29 18:51
S01cron
2.99
KB
-rwxr-xr-x
2022-07-17 08:49
S01dbus
3.08
KB
-rwxr-xr-x
2023-09-16 10:03
S01exim4
7
KB
-rwxr-xr-x
2025-03-21 14:34
S01haveged
2.31
KB
-rwxr-xr-x
2021-01-13 23:56
S01memcached
3.4
KB
-rwxr-xr-x
2023-01-12 00:02
S01nfs-kernel-server
4.67
KB
-rwxr-xr-x
2024-12-11 14:00
S01php7.2-fpm
4.19
KB
-rwxr-xr-x
2025-03-11 13:05
S01php7.4-fpm
4.19
KB
-rwxr-xr-x
2025-05-10 04:38
S01php8.1-fpm
4.19
KB
-rwxr-xr-x
2025-03-13 18:12
S01php8.4-fpm
4.19
KB
-rwxr-xr-x
2025-05-09 07:02
S01rsync
4.31
KB
-rwxr-xr-x
2025-01-15 18:47
S01ssh
3.96
KB
-rwxr-xr-x
2025-02-14 11:51
S01sudo
1.13
KB
-rwxr-xr-x
2023-06-27 11:45
S01unattended-upgrades
1.36
KB
-rwxr-xr-x
2022-12-31 20:59
S01uuidd
1.28
KB
-rwxr-xr-x
2024-11-21 20:01
Save
Rename
#! /bin/sh ### BEGIN INIT INFO # Provides: sudo # Required-Start: $local_fs $remote_fs # Required-Stop: # X-Start-Before: rmnologin # Default-Start: 2 3 4 5 # Default-Stop: # Short-Description: Provide limited super user privileges to specific users # Description: Provide limited super user privileges to specific users. ### END INIT INFO . /lib/lsb/init-functions N=/etc/init.d/sudo set -e case "$1" in start) # make sure privileges don't persist across reboots # if the /run/sudo directory doesn't exist, let's create it with the # correct permissions and SELinux label if ! [ -d /run/systemd/system ] ; then if [ -d /run/sudo ] then find /run/sudo -exec touch -d @0 '{}' \; else mkdir /run/sudo /run/sudo/ts chown root:root /run/sudo /run/sudo/ts chmod 0711 /run/sudo chmod 0700 /run/sudo/ts [ -x /sbin/restorecon ] && /sbin/restorecon /run/sudo /run/sudo/ts fi fi ;; stop|reload|restart|force-reload|status) ;; *) echo "Usage: $N {start|stop|restart|force-reload|status}" >&2 exit 1 ;; esac exit 0