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
/
snap /
core24 /
1643 /
etc /
init.d /
Delete
Unzip
Name
Size
Permission
Date
Action
apparmor
3.65
KB
-rwxr-xr-x
2026-02-20 23:51
cryptdisks
937
B
-rwxr-xr-x
2024-06-05 13:46
cryptdisks-early
896
B
-rwxr-xr-x
2024-06-05 13:46
dbus
3.08
KB
-rwxr-xr-x
2023-12-05 15:36
kmod
2
KB
-rwxr-xr-x
2024-04-18 10:06
plymouth
1.35
KB
-rwxr-xr-x
2024-03-21 13:42
plymouth-log
760
B
-rwxr-xr-x
2024-03-21 13:42
procps
959
B
-rwxr-xr-x
2024-03-24 15:35
ssh
3.96
KB
-rwxr-xr-x
2025-07-21 15:58
Save
Rename
#! /bin/sh ### BEGIN INIT INFO # Provides: cryptdisks # Required-Start: checkroot cryptdisks-early # Required-Stop: umountroot cryptdisks-early # Should-Start: udev mdadm-raid lvm2 # Should-Stop: udev mdadm-raid lvm2 # X-Start-Before: checkfs # X-Stop-After: umountfs # X-Interactive: true # Default-Start: S # Default-Stop: 0 6 # Short-Description: Setup remaining encrypted block devices. # Description: ### END INIT INFO set -e if [ -r /lib/cryptsetup/cryptdisks-functions ]; then . /lib/cryptsetup/cryptdisks-functions else exit 0 fi INITSTATE="remaining" DEFAULT_LOUD="yes" case "$CRYPTDISKS_ENABLE" in [Nn]*) exit 0 ;; esac case "$1" in start) do_start ;; stop) do_stop ;; restart|reload|force-reload) do_stop do_start ;; force-start) FORCE_START="yes" do_start ;; *) echo "Usage: cryptdisks {start|stop|restart|reload|force-reload|force-start}" exit 1 ;; esac