Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.216.68
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
snap /
core20 /
2866 /
etc /
init.d /
Delete
Unzip
Name
Size
Permission
Date
Action
apparmor
3.65
KB
-rwxr-xr-x
2023-10-10 21:20
cryptdisks
937
B
-rwxr-xr-x
2020-02-04 22:11
cryptdisks-early
896
B
-rwxr-xr-x
2020-02-04 22:11
dbus
3.08
KB
-rwxr-xr-x
2019-09-30 16:47
hwclock.sh
3.72
KB
-rwxr-xr-x
2019-07-29 06:44
kmod
2
KB
-rwxr-xr-x
2020-02-19 18:12
procps
924
B
-rwxr-xr-x
2020-02-14 07:44
ssh
3.85
KB
-rwxr-xr-x
2023-04-04 07:47
udev
6.71
KB
-rwxr-xr-x
2024-06-18 05:29
Save
Rename
#! /bin/sh ### BEGIN INIT INFO # Provides: cryptdisks-early # Required-Start: checkroot # Required-Stop: umountroot # Should-Start: udev mdadm-raid # Should-Stop: udev mdadm-raid # X-Start-Before: lvm2 # X-Stop-After: lvm2 umountfs # X-Interactive: true # Default-Start: S # Default-Stop: 0 6 # Short-Description: Setup early 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="early" DEFAULT_LOUD="" 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-early {start|stop|restart|reload|force-reload|force-start}" exit 1 ;; esac