Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
etc /
rc4.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
S01cloud-config
1.33
KB
-rwxr-xr-x
2024-09-17 15:08
S01cloud-final
1.47
KB
-rwxr-xr-x
2024-09-17 15:08
S01cloud-init
1.32
KB
-rwxr-xr-x
2022-11-23 21:17
S01cloud-init-local
1.25
KB
-rwxr-xr-x
2024-09-17 15:08
S01dbus
3.08
KB
-rwxr-xr-x
2023-09-16 10:03
S01dovecot
5.12
KB
-rw-r--r--
2023-06-27 04:04
S01exim4
7
KB
-rwxr-xr-x
2024-09-28 14:34
S01mariadb
7
KB
-rwxr-xr-x
2025-02-19 00:56
S01postfix
3.02
KB
-rwxr-xr-x
2024-03-06 15:02
S01rsync
4.31
KB
-rwxr-xr-x
2025-01-15 18:47
S01ssh
3.96
KB
-rwxr-xr-x
2024-12-08 00:14
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