Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.105
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
libexec /
Delete
Unzip
Name
Size
Permission
Date
Action
awk
[ DIR ]
drwxr-xr-x
2025-02-24 21:35
coreutils
[ DIR ]
drwxr-xr-x
2025-05-21 11:43
dovecot
[ DIR ]
drwxr-xr-x
2024-09-20 10:46
fwupd
[ DIR ]
drwxr-xr-x
2025-11-18 12:45
gawk
[ DIR ]
drwxr-xr-x
2025-02-24 21:35
gcc
[ DIR ]
drwxr-xr-x
2025-09-15 15:42
getconf
[ DIR ]
drwxr-xr-x
2026-02-19 12:45
grub2
[ DIR ]
drwxr-xr-x
2026-03-21 11:43
grubby
[ DIR ]
drwxr-xr-x
2025-11-18 12:45
hostname
[ DIR ]
drwxr-xr-x
2025-02-24 21:35
initscripts
[ DIR ]
drwxr-xr-x
2025-03-12 20:09
installkernel
[ DIR ]
drwxr-xr-x
2025-11-18 12:45
iptables
[ DIR ]
drwxr-xr-x
2025-02-25 04:00
irqbalance
[ DIR ]
drwxr-xr-x
2025-09-21 10:36
linux-boot-probes
[ DIR ]
drwxr-xr-x
2025-02-25 03:50
man-db
[ DIR ]
drwxr-xr-x
2025-11-18 12:45
microcode_ctl
[ DIR ]
drwxr-xr-x
2026-01-31 12:45
openldap
[ DIR ]
drwxr-xr-x
2025-03-13 12:29
openssh
[ DIR ]
drwxr-xr-x
2026-04-04 11:44
os-prober
[ DIR ]
drwxr-xr-x
2025-02-25 03:50
os-probes
[ DIR ]
drwxr-xr-x
2025-02-25 03:50
p11-kit
[ DIR ]
drwxr-xr-x
2025-02-25 03:50
rsyslog
[ DIR ]
drwxr-xr-x
2025-09-21 15:12
selinux
[ DIR ]
drwxr-xr-x
2025-11-18 12:44
sssd
[ DIR ]
drwxr-xr-x
2025-12-01 12:43
sudo
[ DIR ]
drwxr-xr-x
2025-11-18 12:45
utempter
[ DIR ]
drwxr-xr-x
2025-02-24 21:35
arptables-helper
1.27
KB
-rwxr-xr-x
2025-02-04 03:35
arptables-nft-helper
1.27
KB
-rwxr-xr-x
2025-02-04 03:35
dirmngr_ldap
40.03
KB
-rwxr-xr-x
2026-01-15 21:34
dnf-utils
3.6
KB
-rwxr-xr-x
2025-11-12 04:27
ebtables-helper
1.89
KB
-rwxr-xr-x
2025-02-04 03:45
fips-setup-helper
333
B
-rwxr-xr-x
2025-09-05 13:18
generate-rndc-key.sh
681
B
-rwxr-xr-x
2026-04-15 05:39
gpg-check-pattern
59.91
KB
-rwxr-xr-x
2026-01-15 21:34
gpg-pair-tool
64.48
KB
-rwxr-xr-x
2026-01-15 21:34
gpg-preset-passphrase
35.74
KB
-rwxr-xr-x
2026-01-15 21:34
gpg-protect-tool
84.68
KB
-rwxr-xr-x
2026-01-15 21:34
gpg-wks-client
50
B
-rwxr-xr-x
2026-01-15 21:34
grepconf.sh
257
B
-rwxr-xr-x
2022-01-31 20:20
import-state
1.04
KB
-rwxr-xr-x
2024-08-27 11:35
keyboxd
158.24
KB
-rwxr-xr-x
2026-01-15 21:34
loadmodules
237
B
-rwxr-xr-x
2024-08-27 11:35
nm-daemon-helper
15.3
KB
-rwxr-xr-x
2026-04-07 17:54
nm-dhcp-helper
19.23
KB
-rwxr-xr-x
2026-04-07 17:54
nm-dispatcher
76.6
KB
-rwxr-xr-x
2026-04-07 17:54
nm-initrd-generator
771.93
KB
-rwxr-xr-x
2026-04-07 17:54
nm-priv-helper
39.91
KB
-rwxr-xr-x
2026-04-07 17:54
platform-python
15.09
KB
-rwxr-xr-x
2026-04-07 16:56
platform-python3.9
15.09
KB
-rwxr-xr-x
2026-04-07 16:56
scdaemon
427.34
KB
-rwxr-xr-x
2026-01-15 21:34
vi
1.38
MB
-rwxr-xr-x
2026-04-15 09:43
Save
Rename
#!/usr/bin/bash # import-state: import state files from initramfs (e.g. network config) # Copy state into root folder: # ============================ cd /run/initramfs/state IFS_backup=$IFS IFS=$'\n' # Process find's results line by line dirs_found=$(find . -type d) for dir in $dirs_found; do pushd "$dir" > /dev/null # Remove initial '.' char from the find's result: dest_dir="${dir/\./}" # Create destination folder if it does not exist (with the same rights): if [[ -n "$dest_dir" && ! -d "$dest_dir" ]]; then mkdir -p "$dest_dir" chmod --reference="$PWD" "$dest_dir" chown --reference="$PWD" "$dest_dir" fi # Copy all files that are not directory: find . -mindepth 1 -maxdepth 1 -not -type d -exec cp -av -t "$dest_dir" {} \; > /dev/null popd > /dev/null done IFS=$IFS_backup # Run restorecon on the copied files: # =================================== if [ -e /sys/fs/selinux/enforce ] && [ -x /usr/sbin/restorecon ]; then find . -mindepth 1 -print0 | { cd / && xargs --null restorecon -iF; } fi