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.217.105
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
initramfs-tools /
scripts /
local-bottom /
Delete
Unzip
Name
Size
Permission
Date
Action
cryptgnupg-sc
253
B
-rwxr-xr-x
2022-01-14 06:44
cryptopensc
449
B
-rwxr-xr-x
2022-01-14 06:44
cryptroot
307
B
-rwxr-xr-x
2022-01-14 06:44
iscsi
833
B
-rwxr-xr-x
2022-01-19 20:38
mdadm
46
B
-rwxr-xr-x
2023-04-11 12:22
ntfs_3g
345
B
-rwxr-xr-x
2026-07-12 00:55
Save
Rename
#!/bin/sh # If iscsiuio is present in the initramfs, and it was started by us, # stop it again so the system iscsiuio can take over later. if [ -x /sbin/iscsiuio ] && [ -e /run/initramfs/iscsiuio.pid ] ; then start-stop-daemon --stop --quiet --retry=TERM/10/KILL/5 \ --pidfile /run/initramfs/iscsiuio.pid \ --name iscsiuio --exec /sbin/iscsiuio || : fi # Remove the interface file if no disks are present if [ -f /run/initramfs/open-iscsi.interface ] ; then found=0 for disk in /dev/disk/by-path/*-iscsi-*; do if [ ! -e "$disk" ] ; then # If we have no matches, we stil go through the for loop once with # the pattern as a string continue fi if ! readlink -f "$disk" > /dev/null ; then continue fi found=1 break; done if [ $found = 0 ] ; then rm /run/initramfs/open-iscsi.interface fi fi exit 0