Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
etc /
init.d /
Delete
Unzip
Name
Size
Permission
Date
Action
apache-htcacheclean
2.43
KB
-rwxr-xr-x
2024-09-28 08:35
apache2
7.95
KB
-rwxr-xr-x
2024-09-29 18:51
apparmor
3.65
KB
-rwxr-xr-x
2023-02-14 11:49
console-setup.sh
1.21
KB
-rwxr-xr-x
2023-05-21 21:30
cron
2.99
KB
-rwxr-xr-x
2022-07-17 08:49
dbus
3.08
KB
-rwxr-xr-x
2023-02-08 13:21
hwclock.sh
1.71
KB
-rwxr-xr-x
2023-02-13 08:48
keyboard-setup.sh
1.45
KB
-rwxr-xr-x
2022-07-18 12:25
kmod
2.01
KB
-rwxr-xr-x
2022-12-09 22:58
mariadb
7
KB
-rwxr-xr-x
2025-02-19 00:56
networking
4.42
KB
-rwxr-xr-x
2023-01-23 21:14
nginx
4.47
KB
-rwxr-xr-x
2025-02-17 19:40
php8.4-fpm
4.19
KB
-rwxr-xr-x
2025-10-01 20:26
procps
959
B
-rwxr-xr-x
2022-12-19 06:06
qemu-guest-agent
3.04
KB
-rwxr-xr-x
2023-04-26 15:50
redis-server
1.57
KB
-rwxr-xr-x
2024-01-16 10:13
rsync
4.31
KB
-rwxr-xr-x
2025-01-15 18:47
ssh
3.96
KB
-rwxr-xr-x
2023-02-08 10:43
sudo
1.13
KB
-rwxr-xr-x
2023-06-27 11:45
udev
6.71
KB
-rwxr-xr-x
2023-02-28 11:15
ufw
2.03
KB
-rwxr-xr-x
2023-05-16 13:59
x11-common
2.7
KB
-rwxr-xr-x
2021-08-18 10:58
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