Linux box325.rapidenet.ca 5.14.0-687.25.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Mon Jul 13 11:40:33 EDT 2026 x86_64
LiteSpeed
Server IP : 68.168.116.250 & Your IP : 216.73.216.215
Domains :
Cant Read [ /etc/named.conf ]
User : protectionrat
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
NetworkManager /
dispatcher.d /
Delete
Unzip
Name
Size
Permission
Date
Action
no-wait.d
[ DIR ]
drwxr-xr-x
2026-06-03 11:03
pre-down.d
[ DIR ]
drwxr-xr-x
2026-06-03 11:03
pre-up.d
[ DIR ]
drwxr-xr-x
2026-06-03 11:03
11-dhclient
1.04
KB
-rwxr-xr-x
2026-04-09 00:58
20-chrony-dhcp
1.61
KB
-rwxr-xr-x
2026-04-09 00:49
20-chrony-onoffline
791
B
-rwxr-xr-x
2025-08-27 12:05
99-nvme-nbft-connect.sh
117
B
-rwxr-xr-x
2026-04-08 18:06
Save
Rename
#!/usr/bin/bash # run dhclient.d scripts in an emulated environment PATH=/bin:/usr/bin:/sbin ETCDIR=/etc/dhcp SAVEDIR=/var/lib/dhclient interface=$1 for optname in "${!DHCP4_@}"; do newoptname=${optname,,}; newoptname=new_${newoptname#dhcp4_}; export "${newoptname}"="${!optname}"; done [ -f /etc/sysconfig/network ] && . /etc/sysconfig/network [ -f /etc/sysconfig/network-scripts/ifcfg-"${interface}" ] && \ . /etc/sysconfig/network-scripts/ifcfg-"${interface}" if [ -d $ETCDIR/dhclient.d ]; then for f in $ETCDIR/dhclient.d/*.sh; do if [ -x "${f}" ]; then subsystem="${f%.sh}" subsystem="${subsystem##*/}" . "${f}" if [ "$2" = "up" ]; then "${subsystem}_config" elif [ "$2" = "dhcp4-change" ]; then if [ "$subsystem" = "chrony" -o "$subsystem" = "ntp" ]; then "${subsystem}_config" fi elif [ "$2" = "down" ]; then "${subsystem}_restore" fi fi done fi