Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 18.219.61.156
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-13 21:44
cryptopensc
449
B
-rwxr-xr-x
2022-01-13 21:44
cryptroot
307
B
-rwxr-xr-x
2022-01-13 21:44
iscsi
833
B
-rwxr-xr-x
2022-01-19 11:38
mdadm
46
B
-rwxr-xr-x
2023-04-11 03:22
ntfs_3g
345
B
-rwxr-xr-x
2022-11-01 11:56
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