Linux ih01.iridiumhosting.com 5.14.0-611.5.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Nov 11 08:09:09 EST 2025 x86_64
LiteSpeed
Server IP : 67.227.241.211 & Your IP : 216.73.216.226
Domains :
Cant Read [ /etc/named.conf ]
User : dustinhy
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
MXB /
rear /
tests /
setup1 /
Delete
Unzip
Name
Size
Permission
Date
Action
etc
[ DIR ]
drwxr-xr-x
2026-04-01 09:39
mappings
[ DIR ]
drwxr-xr-x
2026-04-01 09:39
tcase1_results
[ DIR ]
drwxr-xr-x
2026-04-01 09:39
tcase2_results
[ DIR ]
drwxr-xr-x
2026-04-01 09:39
tcase3_results
[ DIR ]
drwxr-xr-x
2026-04-01 09:39
tcase4_results
[ DIR ]
drwxr-xr-x
2026-04-01 09:39
tcase5_results
[ DIR ]
drwxr-xr-x
2026-04-01 09:39
tcase6_results
[ DIR ]
drwxr-xr-x
2026-04-01 09:39
tcase7_results
[ DIR ]
drwxr-xr-x
2026-04-01 09:39
tcase8_results
[ DIR ]
drwxr-xr-x
2026-04-01 09:39
README
4.91
KB
-rw-r--r--
2026-04-01 09:39
kvm.xml
5.44
KB
-rw-r--r--
2026-04-01 09:39
run.sh
1.79
KB
-rw-r--r--
2026-04-01 09:39
tcase1.sh
90
B
-rwxr-xr-x
2026-04-01 09:39
tcase2.sh
168
B
-rwxr-xr-x
2026-04-01 09:39
tcase3.sh
220
B
-rwxr-xr-x
2026-04-01 09:39
tcase4.sh
298
B
-rwxr-xr-x
2026-04-01 09:39
tcase5.sh
218
B
-rwxr-xr-x
2026-04-01 09:39
tcase6.sh
301
B
-rwxr-xr-x
2026-04-01 09:39
tcase7.sh
134
B
-rwxr-xr-x
2026-04-01 09:39
tcase8.sh
212
B
-rwxr-xr-x
2026-04-01 09:39
verify.sh
1.28
KB
-rwxr-xr-x
2026-04-01 09:39
Save
Rename
#!/bin/bash echo echo "$0" echo REAR_DIR="$(readlink -f "$(dirname "${BASH_SOURCE[0]}")/../..")" RESULT_DIR="$(readlink -f "$(dirname "${BASH_SOURCE[0]}")")/$(basename $0 .sh)_results" mkdir -p $RESULT_DIR function DebugPrint () { echo "DebugPrint: $*" | tee -a $RESULT_DIR/stderr >&2 } function LogPrint () { echo "LogPrint: $*" | tee -a $RESULT_DIR/stderr >&2 } function LogPrintError () { echo "LogPrintError: $*" | tee -a $RESULT_DIR/stderr >&2 } function BugError () { echo "BUGERROR: $*" | tee -a $RESULT_DIR/stderr >&2 } function read_and_strip_file () { grep -v "^#" $1 2>/dev/null || true } function is_true () { if [ "$1" == "true" ]; then return 0 else return 1 fi } function has_binary () { which $1 >/dev/null 2>&1 } TMP_DIR="/tmp/$(basename "$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")")" rm -fr $TMP_DIR >/dev/null 2>&1 mkdir -p $TMP_DIR # Add to sed -e below to test "ip_link_supports_bridge='false'" (RHEL6) # -e "s#\$ip_link_supports_bridge#'false'#" \ # Add to sed -e below to test 'readlink' taking only 1 filename (RHEL6) # -e 's#readlink /foo /bar#! readlink /foo /bar#' \ # Add to sed -e below to have code using 'brctl' instead of 'ip link' (RHEL6) # -e "s#\$net_devices_have_lower_links#'false'#" \ sed -e "s#^network_devices_setup_script=.*#network_devices_setup_script=$TMP_DIR/60-network-devices.sh#" \ $REAR_DIR/usr/share/rear/rescue/GNU/Linux/310_network_devices.sh > $TMP_DIR/310_network_devices.sh sed "s#^network_routing_setup_script=.*#network_routing_setup_script=$TMP_DIR/62-routing.sh#" $REAR_DIR/usr/share/rear/rescue/GNU/Linux/350_routing.sh > $TMP_DIR/350_routing.sh . $TMP_DIR/310_network_devices.sh . $TMP_DIR/350_routing.sh for f in $TMP_DIR/60-network-devices.sh $TMP_DIR/62-routing.sh; do grep -v "dev eth0" $f > $RESULT_DIR/$(basename $f) done