Linux ih01.iridiumhosting.com 5.14.0-611.55.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 15:19:29 EDT 2026 x86_64
LiteSpeed
Server IP : 67.227.241.211 & Your IP : 216.73.216.44
Domains :
Cant Read [ /etc/named.conf ]
User : dustinhy
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
MXB /
rear /
usr /
share /
rear /
output /
default /
Delete
Unzip
Name
Size
Permission
Date
Action
010_set_umask.sh
303
B
-rw-r--r--
2026-04-01 09:39
100_mount_output_path.sh
189
B
-rw-r--r--
2026-04-01 09:39
150_save_copy_of_prefix_dir.sh
967
B
-rw-r--r--
2026-04-01 09:39
200_make_boot_dir.sh
144
B
-rw-r--r--
2026-04-01 09:39
200_make_prefix_dir.sh
1.03
KB
-rw-r--r--
2026-04-01 09:39
250_create_lock.sh
614
B
-rw-r--r--
2026-04-01 09:39
400_copy_disk_struct_files.sh
772
B
-rw-r--r--
2026-04-01 09:39
940_grub2_rescue.sh
16.33
KB
-rw-r--r--
2026-04-01 09:39
940_grub_rescue.sh
3.68
KB
-rw-r--r--
2026-04-01 09:39
950_copy_result_files.sh
8.82
KB
-rw-r--r--
2026-04-01 09:39
950_email_result_files.sh
1.4
KB
-rw-r--r--
2026-04-01 09:39
970_remove_lock.sh
452
B
-rw-r--r--
2026-04-01 09:39
980_umount_output_dir.sh
200
B
-rw-r--r--
2026-04-01 09:39
Save
Rename
# Create $OUTPUT_PREFIX directory. # The $OUTPUT_PREFIX directory defaults to $HOSTNAME. # # This happens usually under a mounted network filesystem share # e.g. in case of OUTPUT_URL=nfs://NFS.server.IP.address/remote/nfs/share # but it is also happens for local stuff like OUTPUT_URL=usb:///dev/disk/by-label/REAR-000 # Do not do this for tapes and special attention for file:///path local scheme="$( url_scheme "$OUTPUT_URL" )" local path="$( url_path "$OUTPUT_URL" )" # If filesystem access to url is unsupported return silently (e.g. scheme tape) scheme_supports_filesystem $scheme || return 0 local opath="$( output_path "$scheme" "$path" )" # Create $OUTPUT_PREFIX sub-directory. # That directory should be neither world-readable nor world-writable # because it contains confidential data. In particular it may contain # the backup of (almost) all files of the system: mkdir -p $v -m0750 "$opath" && return # A failure to create the $OUTPUT_PREFIX sub-directory is fatal: Error "Failed to create '$opath' directory for OUTPUT_URL=$OUTPUT_URL"