Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 216.73.216.39
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
dracut /
modules.d /
90dmsquash-live /
Delete
Unzip
Name
Size
Permission
Date
Action
apply-live-updates.sh
492
B
-rwxr-xr-x
2013-09-12 12:52
checkisomd5@.service
268
B
-rw-r--r--
2020-09-30 15:57
dmsquash-live-genrules.sh
718
B
-rwxr-xr-x
2020-09-30 15:57
dmsquash-live-root.sh
10.23
KB
-rwxr-xr-x
2020-09-30 15:57
dmsquash-liveiso-genrules.sh
398
B
-rwxr-xr-x
2020-09-30 15:57
iso-scan.sh
901
B
-rwxr-xr-x
2013-09-12 12:52
module-setup.sh
1.17
KB
-rwxr-xr-x
2020-09-30 15:57
parse-dmsquash-live.sh
1.65
KB
-rwxr-xr-x
2020-09-30 15:57
parse-iso-scan.sh
309
B
-rwxr-xr-x
2013-09-12 12:52
Save
Rename
#!/bin/sh if [ -b /dev/mapper/live-rw ] && [ -d /updates ]; then info "Applying updates to live image..." mount -o bind /run $NEWROOT/run # avoid overwriting symlinks (e.g. /lib -> /usr/lib) with directories ( cd /updates find . -depth -type d | while read dir; do mkdir -p "$NEWROOT/$dir" done find . -depth \! -type d | while read file; do cp -a "$file" "$NEWROOT/$file" done ) umount $NEWROOT/run fi