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.217.9
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 /
rescue /
default /
Delete
Unzip
Name
Size
Permission
Date
Action
010_merge_skeletons.sh
1.8
KB
-rw-r--r--
2026-04-01 09:39
020_create_skeleton_dirs.sh
1.91
KB
-rw-r--r--
2026-04-01 09:39
100_hostname.sh
675
B
-rw-r--r--
2026-04-01 09:39
200_etc_issue.sh
331
B
-rw-r--r--
2026-04-01 09:39
300_patch_root_home.sh
535
B
-rw-r--r--
2026-04-01 09:39
430_prepare_timesync.sh
2.33
KB
-rw-r--r--
2026-04-01 09:39
500_ssh.sh
5.91
KB
-rw-r--r--
2026-04-01 09:39
550_vagrant.sh
989
B
-rw-r--r--
2026-04-01 09:39
850_save_sysfs_uefi_vars.sh
8.35
KB
-rw-r--r--
2026-04-01 09:39
860_set_uefi_vars.sh
488
B
-rw-r--r--
2026-04-01 09:39
900_clone_users_and_groups.sh
4.37
KB
-rw-r--r--
2026-04-01 09:39
910_copy_logfile.sh
858
B
-rw-r--r--
2026-04-01 09:39
Save
Rename
# purpose of this script is copy the user vagrant and its home dir to the rescue image # only required when working with vagrant of course if PASSWD_VAGRANT=$(grep vagrant /etc/passwd) ; then #vagrant:x:1000:1000:vagrant:/home/vagrant:/bin/bash echo "$PASSWD_VAGRANT" >>$ROOTFS_DIR/etc/passwd IFS=: read user ex uid gid gecos homedir junk <<<"$PASSWD_VAGRANT" CLONE_GROUPS+=( "$gid" admin ) mkdir -p $v -m 0700 "$ROOTFS_DIR$homedir" chown $v ${user}:${gid} "$ROOTFS_DIR$homedir" COPY_AS_IS+=( $homedir/.s[s]h ) # grab the shadow entry - if hashed use that one otherwise generate generic entry with password vagrant IFS=: read user hash junk <<<$(grep $user /etc/shadow) case "$hash" in '$1$'*) echo "$user:$hash:$junk" >> $ROOTFS_DIR/etc/shadow ;; * ) echo "$user:$(echo vagrant | openssl passwd -1 -stdin):::::::" >> $ROOTFS_DIR/etc/shadow ;; esac Log "Vagrant user created including home directory on rescue image" fi